From 2dac92b244eef1575a5a0487fe8b615be1a9e294 Mon Sep 17 00:00:00 2001 From: Reeze Xia Date: Wed, 4 Mar 2015 11:34:53 +0800 Subject: [PATCH] Silence a empty while loop warning --- main/streams/streams.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/streams/streams.c b/main/streams/streams.c index 16149fbc92..c47fe0d940 100644 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -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 -- 2.49.0