From: Michael Meskes Date: Mon, 12 Mar 2018 22:52:08 +0000 (+0100) Subject: Set connection back to NULL after freeing it. X-Git-Tag: REL9_3_23~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=042badc3778ade0f430049eb7dac03972e544e5a;p=postgresql Set connection back to NULL after freeing it. Patch by Jeevan Ladhe --- diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c index fffcda7cde..bfa64a17ce 100644 --- a/src/interfaces/ecpg/preproc/output.c +++ b/src/interfaces/ecpg/preproc/output.c @@ -155,6 +155,7 @@ output_statement(char *stmt, int whenever_mode, enum ECPG_statement_type st) free(stmt); if (connection != NULL) free(connection); + connection = NULL; } void @@ -169,6 +170,7 @@ output_prepare_statement(char *name, char *stmt) free(name); if (connection != NULL) free(connection); + connection = NULL; } void @@ -189,6 +191,7 @@ output_deallocate_prepare_statement(char *name) free(name); if (connection != NULL) free(connection); + connection = NULL; } static void