8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e22166 commit db2fc80Copy full SHA for db2fc80
src/interfaces/ecpg/preproc/ecpg.c
@@ -327,6 +327,7 @@ main(int argc, char *const argv[])
327
fprintf(stderr, _("%s: could not open file \"%s\": %s\n"),
328
progname, output_filename, strerror(errno));
329
free(output_filename);
330
+ output_filename = NULL;
331
free(input_filename);
332
continue;
333
}
@@ -474,8 +475,10 @@ main(int argc, char *const argv[])
474
475
476
477
- if (output_filename && out_option == 0)
478
+ if (output_filename && out_option == 0) {
479
480
481
+ }
482
483
484
0 commit comments