mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fix bug #62186 readline fails to compile
This commit is contained in:
parent
9b98cf7865
commit
428dddd3e8
6
NEWS
6
NEWS
@ -82,7 +82,11 @@ PHP NEWS
|
||||
- Libxml:
|
||||
. Fixed bug #61617 (Libxml tests failed(ht is already destroyed)).
|
||||
(Laruence)
|
||||
|
||||
|
||||
- Readline:
|
||||
. Fixed bug #62186 (readline fails to compile - void function should not
|
||||
return a value). (Johannes)
|
||||
|
||||
- Sockets:
|
||||
. Fixed bug #62025 (__ss_family was changed on AIX 5.3). (Felipe)
|
||||
|
||||
|
@ -198,7 +198,7 @@ PHP_RSHUTDOWN_FUNCTION(readline)
|
||||
|
||||
PHP_MINFO_FUNCTION(readline)
|
||||
{
|
||||
return PHP_MINFO(cli_readline)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
|
||||
PHP_MINFO(cli_readline)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
|
Loading…
Reference in New Issue
Block a user