Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix memory leak in php_imap_mutf7()
This commit is contained in:
Christoph M. Becker 2020-09-21 11:26:41 +02:00
commit d1feeed7f3

View File

@ -3086,7 +3086,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);
}
}
/* }}} */