Skip to content

Commit c0a2f4f

Browse files
authored
Remove Space
1 parent deccf12 commit c0a2f4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/standard/url.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ static void php_replace_controlchars(char *str, size_t len)
5555
ZEND_ASSERT(str != NULL);
5656

5757
while (s < e) {
58-
if (*s <= 0x1F || *s == 0x7F) {
58+
if (*s <= 0x1F || *s == 0x7F) {
5959
*s = '_';
6060
}
61-
s++;
62-
}
61+
s++;
62+
}
6363
}
6464

6565
PHPAPI php_url *php_url_parse(char const *str)

0 commit comments

Comments
 (0)