From bc018dec4af7199702da8b448ea9e50faf9724aa Mon Sep 17 00:00:00 2001 From: William Bailey Date: Sun, 27 Oct 2019 22:33:50 -0400 Subject: [PATCH 1/2] Changed the final URL to https://github.com/westes/flex Signed-off-by: William Bailey (cherry picked from commit caf1d9292c51af8b8ccdd4da1238e774c7f04545) --- HACKING | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HACKING b/HACKING index 473500aa5c..2bc008eae9 100644 --- a/HACKING +++ b/HACKING @@ -246,4 +246,4 @@ have done little to try to remove those warnings. If you do not have Flex installed, it can be downloaded from the following URL: - http://flex.sourceforge.net/ + https://github.com/westes/flex From c01a71fbe9a79b1aa22b9bdfb8f4727fe075a959 Mon Sep 17 00:00:00 2001 From: William Bailey Date: Mon, 2 Dec 2019 17:32:09 -0500 Subject: [PATCH 2/2] 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 (cherry picked from commit 30bda56bcef6f56823ac07f0418fd33e1eff837f) --- ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c b/ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c index 3e0ad1f8fc..71a5b7bee6 100644 --- a/ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c +++ b/ompi/mca/io/romio321/romio/adio/common/onesided_aggregation.c @@ -1966,7 +1966,7 @@ printf("iAmUsedAgg - currentRoundFDStart initialized " int *sourceAggBlockLengths=NULL; MPI_Aint *sourceAggDisplacements=NULL, *recvBufferDisplacements=NULL; MPI_Datatype *sourceAggDataTypes=NULL; - char *derivedTypePackedSourceBuffer; + char *derivedTypePackedSourceBuffer=NULL; int derivedTypePackedSourceBufferOffset = 0; int allocatedDerivedTypeArrays = 0; ADIO_Offset amountOfDataReadThisRoundAgg = 0;