1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Fix for memory leak.

This commit is contained in:
Bruce Momjian
1998-04-05 05:52:10 +00:00
parent 39740d75bd
commit 03a7cd1788
3 changed files with 11 additions and 11 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.25 1998/02/26 04:38:12 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.26 1998/04/05 05:52:00 momjian Exp $
*
* NOTES
* InitPostgres() is the function called from PostgresMain
@ -195,8 +195,8 @@ VerifySystemDatabase()
static void
VerifyMyDatabase()
{
char *name;
char *myPath;
const char *name;
const char *myPath;
/* Failure reason returned by some function. NULL if no failure */
char *reason;