1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

remove comment

f and l are the $start and $length, since they come from the user
land, they only can be zend_long
This commit is contained in:
Anatol Belski
2015-06-29 10:56:51 +02:00
parent 0b35e4a3be
commit 8ccf29eb04
+1 -1
View File
@@ -2427,7 +2427,7 @@ PHP_FUNCTION(substr_replace)
zval *from;
zval *len = NULL;
zval *repl;
zend_long l = 0; /* l and f should be size_t, however this needs much closer below logic investigation.*/
zend_long l = 0;
zend_long f;
int argc = ZEND_NUM_ARGS();
zend_string *result;