1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 18:13:00 +02:00

- Fixed missing parameter in php_atoi

This commit is contained in:
Derick Rethans
2000-09-09 23:21:44 +00:00
parent d8a4a9b1dd
commit eba1b6221d

View File

@@ -122,7 +122,7 @@ static PHP_INI_MH(OnChangeMemoryLimit)
int new_limit;
if (new_value) {
new_limit = php_atoi(new_value);
new_limit = php_atoi(new_value, new_value_length);
} else {
new_limit = 1<<30; /* effectively, no limit */
}