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

Fix memory_limit build problem

This commit is contained in:
Zeev Suraski
2000-10-31 12:46:07 +00:00
parent 604876542a
commit fc466bebd8

View File

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