mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Refactored INI subsystem to use zend_string* instead of char*
This commit is contained in:
parent
b9f3247267
commit
88d7ca44f6
38 changed files with 2515 additions and 2461 deletions
|
@ -208,7 +208,7 @@ static PHP_INI_MH(OnUpdateNetCmdBufferSize)
|
|||
{
|
||||
zend_long long_value;
|
||||
|
||||
ZEND_ATOL(long_value, new_value);
|
||||
ZEND_ATOL(long_value, new_value->val);
|
||||
if (long_value < MYSQLND_NET_CMD_BUFFER_MIN_SIZE) {
|
||||
return FAILURE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue