]> granicus.if.org Git - php/commitdiff
Fix parenthesis warning
authorNikita Popov <nikita.ppv@gmail.com>
Tue, 4 Sep 2018 03:32:25 +0000 (05:32 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Tue, 4 Sep 2018 03:32:25 +0000 (05:32 +0200)
ext/phar/phar.c

index e053b6dd6640302ff0738593282691782fadb0dd..414acc78f751ff751ab83517e93d5f702eb13407 100644 (file)
@@ -1843,7 +1843,7 @@ static int phar_check_str(const char *fname, const char *ext_str, int ext_len, i
                pos = strstr(ext_str, ".phar");
 
                if (!pos
-                       || pos != ext_str && (*(pos - 1) == '/')
+                       || (pos != ext_str && (*(pos - 1) == '/'))
                        || (ext_len - (pos - ext_str)) < 5
                        || !(pos += 5)
                        || !(*pos == '\0' || *pos == '/' || *pos == '.')) {