Skip to content

Commit

Permalink
Silence a empty while loop warning
Browse files Browse the repository at this point in the history
  • Loading branch information
reeze committed Mar 4, 2015
1 parent 2fa4d1d commit 2dac92b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main/streams/streams.c
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,9 @@ PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, const
if (localhost == 1) {
(*path_for_open) += 11;
}
while (*(++*path_for_open)=='/');
while (*(++*path_for_open)=='/') {
/* intentionally empty */
}
#ifdef PHP_WIN32
if (*(*path_for_open + 1) != ':')
#endif
Expand Down

0 comments on commit 2dac92b

Please sign in to comment.