diff options
author | Michael Meskes <meskes@postgresql.org> | 2015-06-15 14:20:09 +0200 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2015-06-15 14:23:04 +0200 |
commit | fd1ff4a130c804e10bcf2e1ec385e4c06835f9fd (patch) | |
tree | 8b2ee6ab14a6a7327805833950c4de12dd3426ad /src | |
parent | ec311b1d8f2062d600201c846f817a80eadca6ca (diff) |
Fix memory leak in ecpglib's connect function.
Patch by Michael Paquier
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/connect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/ecpglib/connect.c b/src/interfaces/ecpg/ecpglib/connect.c index 55c56807b2f..e45d17fcc57 100644 --- a/src/interfaces/ecpg/ecpglib/connect.c +++ b/src/interfaces/ecpg/ecpglib/connect.c @@ -321,7 +321,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) { |