should have any of those, but a mistake in an extension could hit this
and the check doesn't actually make any sense as far as I am concerned.
php_charmask(what, wlength, flags TSRMLS_CC);
- for (source = str, end = source + length, target = new_str; (c = *source) || (source < end); source++) {
+ for (source = str, end = source + length, target = new_str; source < end; source++) {
if (flags[(unsigned char)c]) {
if ((unsigned char) c < 32 || (unsigned char) c > 126) {
*target++ = '\\';