diff options
author | Vadim B. Mikheev | 1996-12-14 08:19:40 +0000 |
---|---|---|
committer | Vadim B. Mikheev | 1996-12-14 08:19:40 +0000 |
commit | 76fae39d0265a00dc8d303556c4b3600017afecd (patch) | |
tree | 713a3e9ab6468272e259ccc4452dd294b1e6e898 | |
parent | 8c68e07561a3ac546637a5eecffdd9c9bbbb35d7 (diff) |
if (settings->opt.fieldSep);
^ - deleted
free(settings->opt.fieldSep);
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index eb8e02a4b51..c5709e3a03e 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.37.2.1 1996/12/11 23:07:37 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.37.2.2 1996/12/14 08:19:40 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -1092,7 +1092,7 @@ HandleSlashCmds(PsqlSettings * settings, char *fs = DEFAULT_FIELD_SEP; if (optarg) fs = optarg; - if (settings->opt.fieldSep); + if (settings->opt.fieldSep) free(settings->opt.fieldSep); if (!(settings->opt.fieldSep = strdup(fs))) { perror("malloc"); |