Skip to content

Commit 30bda56

Browse files
committed
romio: fix uninitialized variable
Squash compiler warning. ROMIO is third-party software but has an annoying compiler warning; this is the minimum distance fix. Signed-off-by: William Bailey <[email protected]>
1 parent f03e2f5 commit 30bda56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1966,7 +1966,7 @@ printf("iAmUsedAgg - currentRoundFDStart initialized "
19661966
int *sourceAggBlockLengths=NULL;
19671967
MPI_Aint *sourceAggDisplacements=NULL, *recvBufferDisplacements=NULL;
19681968
MPI_Datatype *sourceAggDataTypes=NULL;
1969-
char *derivedTypePackedSourceBuffer;
1969+
char *derivedTypePackedSourceBuffer=NULL;
19701970
int derivedTypePackedSourceBufferOffset = 0;
19711971
int allocatedDerivedTypeArrays = 0;
19721972
ADIO_Offset amountOfDataReadThisRoundAgg = 0;

0 commit comments

Comments
 (0)