From cbb131570e1e6cc60cb629fc049740198dbc1aa7 Mon Sep 17 00:00:00 2001
From: "Vadim B. Mikheev" <vadim4o@yahoo.com>
Date: Sat, 14 Dec 1996 08:20:18 +0000
Subject: [PATCH]            if (settings->opt.fieldSep);                      
                 ^ - deleted                 free(settings->opt.fieldSep);

---
 src/bin/psql/psql.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 34a26a257c3..6d5072e2a7f 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.38 1996/12/11 22:57:34 momjian Exp $
+ *    $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.39 1996/12/14 08:20:18 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");
-- 
GitLab