Commit eda37712 authored by Bruce Momjian's avatar Bruce Momjian

Fix for \g strdup error.

parent 25fe3c70
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.31 1996/11/22 04:43:48 bryanh Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.32 1996/11/22 06:45:14 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1099,7 +1099,12 @@ HandleSlashCmds(PsqlSettings * settings, ...@@ -1099,7 +1099,12 @@ HandleSlashCmds(PsqlSettings * settings,
break; break;
} }
case 'g': /* \g means send query */ case 'g': /* \g means send query */
settings->gfname = strdup(optarg); if (!optarg)
settings->gfname = NULL;
else if (!(settings->gfname = strdup(optarg))) {
perror("malloc");
exit(1);
}
status = 0; status = 0;
break; break;
case 'h': /* help */ case 'h': /* help */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment