From: Michael Meskes Date: Mon, 15 Jun 2015 12:20:09 +0000 (+0200) Subject: Fix memory leak in ecpglib's connect function. X-Git-Tag: REL9_1_19~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a38f08bb9de6064fe3f42d273bd60a96adceb4bd;p=thirdparty%2Fpostgresql.git Fix memory leak in ecpglib's connect function. Patch by Michael Paquier --- diff --git a/src/interfaces/ecpg/ecpglib/connect.c b/src/interfaces/ecpg/ecpglib/connect.c index 4f5541308e5..d255c5d8f88 100644 --- a/src/interfaces/ecpg/ecpglib/connect.c +++ b/src/interfaces/ecpg/ecpglib/connect.c @@ -320,7 +320,10 @@ ECPGconnect(int lineno, int c, const char *name, const char *user, const char *p } if ((this = (struct connection *) ecpg_alloc(sizeof(struct connection), lineno)) == NULL) + { + ecpg_free(dbname); return false; + } if (dbname != NULL) {