1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +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

@ -11,7 +11,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: miscadmin.h,v 1.20 1998/02/26 04:39:48 momjian Exp $
* $Id: miscadmin.h,v 1.21 1998/04/05 05:52:10 momjian Exp $
*
* NOTES
* some of the information in this file will be moved to
@ -116,8 +116,8 @@ extern int GetDatabaseInfo(char *name, Oid *owner, char *path);
extern char *ExpandDatabasePath(char *path);
/* now in utils/init/miscinit.c */
extern char *GetDatabasePath(void);
extern char *GetDatabaseName(void);
extern const char *GetDatabasePath(void);
extern const char *GetDatabaseName(void);
extern void SetDatabaseName(char *name);
extern void SetDatabasePath(char *path);
extern char *getpgusername(void);