From: Michael Meskes Date: Tue, 13 Mar 2018 23:47:49 +0000 (+0100) Subject: Fix double frees in ecpg. X-Git-Tag: REL9_6_9~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e3f3ab5b85a230e9a008c743402c3e5a43085a1;p=thirdparty%2Fpostgresql.git Fix double frees in ecpg. Patch by Patrick Krecker --- diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c index 047743df5f5..6a473a624bc 100644 --- a/src/interfaces/ecpg/preproc/ecpg.c +++ b/src/interfaces/ecpg/preproc/ecpg.c @@ -327,6 +327,7 @@ main(int argc, char *const argv[]) fprintf(stderr, _("%s: could not open file \"%s\": %s\n"), progname, output_filename, strerror(errno)); free(output_filename); + output_filename = NULL; free(input_filename); continue; } @@ -474,8 +475,10 @@ main(int argc, char *const argv[]) } } - if (output_filename && out_option == 0) + if (output_filename && out_option == 0) { free(output_filename); + output_filename = NULL; + } free(input_filename); }