Skip to content
Snippets Groups Projects
Commit 98be3b49 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix typo in recent SSL unload patch.

Kris Jurka
parent 4e816286
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.111 2008/12/03 20:04:26 mha Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.112 2008/12/04 02:52:31 momjian Exp $
* *
* NOTES * NOTES
* *
...@@ -918,8 +918,8 @@ destroy_ssl_system(void) ...@@ -918,8 +918,8 @@ destroy_ssl_system(void)
* This means we leak a little memory on repeated load/unload * This means we leak a little memory on repeated load/unload
* of the library. * of the library.
*/ */
free(pqlockarray); free(pq_lockarray);
pqlockarray = NULL; pq_lockarray = NULL;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment