1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00

Merge branch 'PHP-7.4' into master

* PHP-7.4:
  Fix memory leak in php_imap_mutf7()
This commit is contained in:
Christoph M. Becker
2020-09-21 11:27:51 +02:00
+2 -1
View File
@@ -2570,7 +2570,8 @@ static void php_imap_mutf7(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{ */
if (out == NIL) {
RETURN_FALSE;
} else {
RETURN_STRING((char *)out);
RETVAL_STRING((char *)out);
fs_give((void**) &out);
}
}
/* }}} */