From abf92840a113207ff78c17514c1d141850300586 Mon Sep 17 00:00:00 2001 From: Michael Meskes Date: Mon, 15 Jun 2015 14:20:09 +0200 Subject: [PATCH] Fix memory leak in ecpglib's connect function. Patch by Michael Paquier --- src/interfaces/ecpg/ecpglib/connect.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/interfaces/ecpg/ecpglib/connect.c b/src/interfaces/ecpg/ecpglib/connect.c index b28ae8239be..f008bbd4fe4 100644 --- a/src/interfaces/ecpg/ecpglib/connect.c +++ b/src/interfaces/ecpg/ecpglib/connect.c @@ -322,7 +322,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) { -- 2.39.5