From: Bruce Momjian Date: Fri, 22 Nov 1996 06:45:14 +0000 (+0000) Subject: Fix for \g strdup error. X-Git-Tag: REL2_0~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eda3771290b1c82943d1f5f3f7297884c052391e;p=thirdparty%2Fpostgresql.git Fix for \g strdup error. --- diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index e7c13ba2a7f..8b22ecf70cb 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.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, break; } 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; break; case 'h': /* help */