We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 503c971 commit 3cc3ba3Copy full SHA for 3cc3ba3
Zend/zend_virtual_cwd.h
@@ -103,7 +103,7 @@ typedef unsigned short mode_t;
103
#define IS_SLASH(c) ((c) == '/')
104
// IS_SLASH_P() may read the previous char on Windows, which may be OOB; use IS_SLASH_P_EX() instead
105
#define IS_SLASH_P(c) (*(c) == '/')
106
-#define IS_SLASH_P_EX(c, first_byte) (*(c) == '/')
+#define IS_SLASH_P_EX(c, first_byte) IS_SLASH_P(c)
107
108
#endif
109
0 commit comments