From: Bruce Momjian Date: Thu, 4 Dec 2008 02:52:31 +0000 (+0000) Subject: Fix typo in recent SSL unload patch. X-Git-Tag: recoveryinfrav9~242 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=5e5876c7a6dac955335fccccbbbbaeaca1cc9569;p=users%2Fsimon%2Fpostgres.git Fix typo in recent SSL unload patch. Kris Jurka --- diff --git a/src/interfaces/libpq/fe-secure.c b/src/interfaces/libpq/fe-secure.c index daad0f1614..36cec88d40 100644 --- a/src/interfaces/libpq/fe-secure.c +++ b/src/interfaces/libpq/fe-secure.c @@ -918,8 +918,8 @@ destroy_ssl_system(void) * This means we leak a little memory on repeated load/unload * of the library. */ - free(pqlockarray); - pqlockarray = NULL; + free(pq_lockarray); + pq_lockarray = NULL; } }