Fix bug #73208 - another missing length check

This commit is contained in:
Stanislav Malyshev 2016-10-03 00:12:14 -07:00
parent 40e7baab3c
commit ef801b9bf9

View file

@ -2523,7 +2523,7 @@ PHP_FUNCTION(imap_8bit)
RETURN_FALSE;
}
RETVAL_STRINGL(decode, newlength, 1);
RETVAL_STRINGL_CHECK(decode, newlength, 1);
fs_give((void**) &decode);
}
/* }}} */