diff options
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r-- | ext/zlib/zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index fde9f02ffa..dd38fa6857 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -362,7 +362,7 @@ static zend_string *php_zlib_encode(const char *in_buf, size_t in_len, int encod ZSTR_VAL(out)[ZSTR_LEN(out)] = '\0'; return out; } else { - zend_string_free(out); + zend_string_efree(out); } } |