mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
Fixed memory leak
This commit is contained in:
parent
13f0c8b18c
commit
a6123151c7
1 changed files with 3 additions and 1 deletions
|
@ -4031,7 +4031,9 @@ PHP_FUNCTION(getenv)
|
|||
ptr = sapi_getenv(str, str_len TSRMLS_CC);
|
||||
if (ptr) {
|
||||
//??? RETURN_STRING(ptr, 0);
|
||||
RETURN_STRING(ptr);
|
||||
RETVAL_STRING(ptr);
|
||||
efree(ptr);
|
||||
return;
|
||||
}
|
||||
#ifdef PHP_WIN32
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue