diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-01-02 07:07:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-01-02 07:07:32 +0000 |
commit | 24632b0ee04f7c1c5b895b8ce82afb2cbd878801 (patch) | |
tree | 457716d11b75375054a4684a2b5b8f68540858eb | |
parent | 6e2341a48e7e9cf226069d8ac55b51217035628c (diff) | |
download | postgresql-24632b0ee04f7c1c5b895b8ce82afb2cbd878801.tar.gz postgresql-24632b0ee04f7c1c5b895b8ce82afb2cbd878801.zip |
fix for previous fix
-rw-r--r-- | src/bin/psql/psql.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 1e3c1a7fb23..e217c268cda 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.44 1997/01/02 06:45:25 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.45 1997/01/02 07:07:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1378,11 +1378,9 @@ MainLoop(PsqlSettings * settings, FILE * source) query); if (slashCmdStatus == 1) { if (query[0] == '\0') - { paren_level = 0; - free(line); - continue; - } + free(line); + continue; } if (slashCmdStatus == 2) { free(line); |