1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00

remove unused var, make string.c compilation zero warnings

This commit is contained in:
Márcio Almada
2015-01-24 00:26:01 -03:00
parent be53374216
commit f27e96c2f8

View File

@@ -3145,7 +3145,6 @@ static zend_string* php_char_to_str_ex(zend_string *str, char from, char *to, si
{
zend_string *result;
size_t char_count = 0;
size_t replaced = 0;
char lc_from = 0;
char *source, *target, *source_end= str->val + str->len;
@@ -3195,7 +3194,6 @@ static zend_string* php_char_to_str_ex(zend_string *str, char from, char *to, si
} else {
for (source = str->val; source < source_end; source++) {
if (tolower(*source) == lc_from) {
replaced = 1;
if (replace_count) {
*replace_count += 1;
}