]> git.droids-corp.org - protos/libecoli.git/commitdiff
fix strvec bad free
authorOlivier Matz <zer0@droids-corp.org>
Thu, 21 Jun 2018 20:45:57 +0000 (22:45 +0200)
committerOlivier Matz <zer0@droids-corp.org>
Thu, 21 Jun 2018 20:45:57 +0000 (22:45 +0200)
lib/ecoli_strvec.c

index ff75f1e8b17cfbbb717d6b8b331158a6f2f8e761..c574b1b63764ea5e79a40198905e3cd17ba484b0 100644 (file)
@@ -401,9 +401,9 @@ static int ec_strvec_testcase(void)
        }
        testres |= EC_TEST_CHECK(ec_strvec_cmp(strvec, strvec2) == 0,
                "strvec and strvec2 should be equal\n");
-       ec_strvec_free(strvec2);
-       strvec = NULL;
        ec_strvec_free(strvec);
+       strvec = NULL;
+       ec_strvec_free(strvec2);
        strvec2 = NULL;
 
        return testres;