]> granicus.if.org Git - postgresql/commitdiff
ECPG: Free the malloc()'ed variables in the test so it comes out clean on
authorMichael Meskes <meskes@postgresql.org>
Tue, 26 Nov 2013 16:14:07 +0000 (17:14 +0100)
committerMichael Meskes <meskes@postgresql.org>
Tue, 26 Nov 2013 16:42:32 +0000 (17:42 +0100)
Valgrind runs.

Patch by Boszormenyi Zoltan <zb@cybertec.at>

src/interfaces/ecpg/test/expected/preproc-outofscope.c
src/interfaces/ecpg/test/expected/preproc-outofscope.stderr
src/interfaces/ecpg/test/preproc/outofscope.pgc

index 125d7d8513e7c7a949bcd8d99238500efd9a91df..2438911a9e2674b8b7369da5da5c872bf49cafa7 100644 (file)
@@ -347,28 +347,31 @@ if (sqlca.sqlcode < 0) exit (1);}
 
        close_cur1();
 
+       free(myvar);
+       free(mynullvar);
+
        strcpy(msg, "drop");
        { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table a1", ECPGt_EOIT, ECPGt_EORT);
-#line 115 "outofscope.pgc"
+#line 118 "outofscope.pgc"
 
 if (sqlca.sqlcode < 0) exit (1);}
-#line 115 "outofscope.pgc"
+#line 118 "outofscope.pgc"
 
 
        strcpy(msg, "commit");
        { ECPGtrans(__LINE__, NULL, "commit");
-#line 118 "outofscope.pgc"
+#line 121 "outofscope.pgc"
 
 if (sqlca.sqlcode < 0) exit (1);}
-#line 118 "outofscope.pgc"
+#line 121 "outofscope.pgc"
 
 
        strcpy(msg, "disconnect");
        { ECPGdisconnect(__LINE__, "CURRENT");
-#line 121 "outofscope.pgc"
+#line 124 "outofscope.pgc"
 
 if (sqlca.sqlcode < 0) exit (1);}
-#line 121 "outofscope.pgc"
+#line 124 "outofscope.pgc"
 
 
        return (0);
index 91d350554e7bc0e2b7a9624ca5816a0109879fa3..c7f8771c6961e0f38fa62cb0cc07622eea8f9a25 100644 (file)
 [NO_PID]: sqlca: code: 0, state: 00000
 [NO_PID]: ecpg_execute on line 58: OK: CLOSE CURSOR
 [NO_PID]: sqlca: code: 0, state: 00000
-[NO_PID]: ecpg_execute on line 115: query: drop table a1; with 0 parameter(s) on connection regress1
+[NO_PID]: ecpg_execute on line 118: query: drop table a1; with 0 parameter(s) on connection regress1
 [NO_PID]: sqlca: code: 0, state: 00000
-[NO_PID]: ecpg_execute on line 115: using PQexec
+[NO_PID]: ecpg_execute on line 118: using PQexec
 [NO_PID]: sqlca: code: 0, state: 00000
-[NO_PID]: ecpg_execute on line 115: OK: DROP TABLE
+[NO_PID]: ecpg_execute on line 118: OK: DROP TABLE
 [NO_PID]: sqlca: code: 0, state: 00000
-[NO_PID]: ECPGtrans on line 118: action "commit"; connection "regress1"
+[NO_PID]: ECPGtrans on line 121: action "commit"; connection "regress1"
 [NO_PID]: sqlca: code: 0, state: 00000
 [NO_PID]: ecpg_finish: connection regress1 closed
 [NO_PID]: sqlca: code: 0, state: 00000
index 25efe75cca592f90c8db9271383b2f330ee3c7af..6b5d2707cef651bf9f7ea36a8dc2e35c59516adf 100644 (file)
@@ -111,6 +111,9 @@ main (void)
 
        close_cur1();
 
+       free(myvar);
+       free(mynullvar);
+
        strcpy(msg, "drop");
        exec sql drop table a1;