Refactored INI subsystem to use zend_string* instead of char*

This commit is contained in:
Dmitry Stogov 2014-09-01 20:57:33 +04:00
parent b9f3247267
commit 88d7ca44f6
38 changed files with 2515 additions and 2461 deletions

View file

@ -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;
}