diff options
Diffstat (limited to 'src/backend/libpq/crypt.c')
-rw-r--r-- | src/backend/libpq/crypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libpq/crypt.c b/src/backend/libpq/crypt.c index d3326eb2e65..ac8b3733876 100644 --- a/src/backend/libpq/crypt.c +++ b/src/backend/libpq/crypt.c @@ -9,7 +9,7 @@ * Dec 17, 1997 - Todd A. Brandys * Orignal Version Completed. * - * $Id: crypt.c,v 1.15 1999/02/13 23:15:42 momjian Exp $ + * $Id: crypt.c,v 1.16 1999/05/09 00:54:30 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -174,7 +174,7 @@ crypt_loadpwdfile() pwd_cache = (char **) realloc((void *) pwd_cache, sizeof(char *) * (pwd_cache_count + 1)); pwd_cache[pwd_cache_count++] = pstrdup(buffer); } - fclose(pwd_file); + FreeFile(pwd_file); /* * Now sort the entries in the cache for faster searching later. |