diff options
author | Pierre Joye <pajoye@php.net> | 2009-08-30 17:13:45 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-08-30 17:13:45 +0000 |
commit | ceb607af13c370bb30b6bbbd8adde6e053eb7008 (patch) | |
tree | a9d6018c7a4f4bcd26575dab28ec3dbcf43a275a /TSRM | |
parent | 30b71027469ed485c4a98531cf04224adc70215d (diff) | |
download | php-git-ceb607af13c370bb30b6bbbd8adde6e053eb7008.tar.gz |
- Fixed leak on error in popen/exec (and related functions)
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/tsrm_win32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index b2e94d22af..19139dd7ae 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -371,6 +371,7 @@ TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, sprintf(cmd, "%s /c \"%s\"", TWG(comspec), command); if (!CreateProcess(NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process)) { + free(cmd); return NULL; } free(cmd); |