Browse Source

# unnecessary condition here.

migration/unlabaled-1.3.2
Moshe Doron 24 years ago
parent
commit
5c3a073c07
  1. 7
      ext/standard/string.c

7
ext/standard/string.c

@ -2365,12 +2365,7 @@ PHPAPI void php_stripslashes(char *str, int *len TSRMLS_DC)
l--;
}
} else {
if (s != t) {
*s++ = *t++;
} else {
s++;
t++;
}
*s++ = *t++;
l--;
}
}

Loading…
Cancel
Save