Add missing zend_parse_parameters_none() for flush()

This commit is contained in:
Reeze Xia 2015-03-03 18:37:47 +08:00
parent bb2e62ecda
commit f97251adec

View File

@ -4384,6 +4384,10 @@ PHP_FUNCTION(getopt)
Flush the output buffer */
PHP_FUNCTION(flush)
{
if (zend_parse_parameters_none() == FAILURE) {
return;
}
sapi_flush();
}
/* }}} */