diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-04-05 05:52:10 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-04-05 05:52:10 +0000 |
| commit | 03a7cd1788734d63b013fc8ada0f07571f760cbc (patch) | |
| tree | 82b4b23117f03c668a48143fd5ce6d3b1973c2e5 /src/backend/utils/init/postinit.c | |
| parent | 39740d75bd7de8209032e92d6ef26fcfd92fe145 (diff) | |
| download | postgresql-03a7cd1788734d63b013fc8ada0f07571f760cbc.tar.gz | |
Fix for memory leak.
Diffstat (limited to 'src/backend/utils/init/postinit.c')
| -rw-r--r-- | src/backend/utils/init/postinit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index baac25cfbe..226f9ba23b 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -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; |
