diff options
Diffstat (limited to 'src/port/path.c')
-rw-r--r-- | src/port/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/path.c b/src/port/path.c index bdb6e29adf1..a1c91a24ddd 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/path.c,v 1.59 2005/09/27 17:39:35 tgl Exp $ + * $PostgreSQL: pgsql/src/port/path.c,v 1.60 2005/10/13 15:37:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -403,7 +403,7 @@ get_progname(const char *argv0) { char *progname; - progname = strdup(nodir_name); + progname = strdup(nodir_name); /* leaks memory, but called only once */ if (progname == NULL) { fprintf(stderr, "%s: out of memory\n", nodir_name); |