Fixed bug #53630 (Fixed parameter handling inside readline() function).

This commit is contained in:
Ilia Alshanetsky 2011-01-10 18:19:02 +00:00
parent 21fba3513a
commit 484a35373e
2 changed files with 5 additions and 1 deletions

4
NEWS
View File

@ -76,6 +76,10 @@
- PHP-FPM SAPI:
. Fixed bug #53527 (php-fpm --test doesn't set a valuable return value). (fat)
- Readline extension:
. Fixed bug #53630 (Fixed parameter handling inside readline() function).
(jo at feuersee dot de, Ilia)
- SOAP extension:
. Fixed possible crash introduced by the NULL poisoning patch.
(Mateusz Kocielski, Pierre)

View File

@ -196,7 +196,7 @@ PHP_FUNCTION(readline)
int prompt_len;
char *result;
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s!", &prompt, &prompt_len)) {
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s!", &prompt, &prompt_len)) {
RETURN_FALSE;
}