From e359b8496d11befb63d4734874d997909c44ad83 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 16 Dec 2010 12:22:08 -0300 Subject: [PATCH] Add some minor missing error checks --- src/port/win32env.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/port/win32env.c b/src/port/win32env.c index 8e9b948c52..42f0326805 100644 --- a/src/port/win32env.c +++ b/src/port/win32env.c @@ -115,9 +115,14 @@ pgwin32_putenv(const char *envval) * Need a copy of the string so we can modify it. */ envcpy = strdup(envval); + if (!envcpy) + return -1; cp = strchr(envcpy, '='); if (cp == NULL) + { + free(envcpy); return -1; + } *cp = '\0'; cp++; if (strlen(cp)) -- 2.40.0