diff options
author | Keyur Govande <keyur@php.net> | 2013-03-29 14:27:36 +0000 |
---|---|---|
committer | Keyur Govande <keyur@php.net> | 2013-03-29 14:27:36 +0000 |
commit | 5bf6323e5114646357197a343d202c0f1b8450a1 (patch) | |
tree | d28e6596e36e60e4d4ae47369e75afc7c34d4174 /sapi/cli/php_cli.c | |
parent | a0a995cff356a6e7526188ad1979fac6c24b9e7e (diff) | |
download | php-git-5bf6323e5114646357197a343d202c0f1b8450a1.tar.gz |
Patch for Bug #64544.
The process title change module keeps track of the locally allocated
environ, so it doesn't need to worry about when environ changes
underneath it, for example by putenv()/setenv()
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 4b8bae7f78..729052334d 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1402,7 +1402,7 @@ out: * Do not move this de-initialization. It needs to happen right before * exiting. */ - cleanup_ps_args(argv); + cleanup_ps_args(argv); exit(exit_status); } /* }}} */ |