Skip to content

Commit 3cc3ba3

Browse files
authored
Update Zend/zend_virtual_cwd.h
1 parent 503c971 commit 3cc3ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_virtual_cwd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ typedef unsigned short mode_t;
103103
#define IS_SLASH(c) ((c) == '/')
104104
// IS_SLASH_P() may read the previous char on Windows, which may be OOB; use IS_SLASH_P_EX() instead
105105
#define IS_SLASH_P(c) (*(c) == '/')
106-
#define IS_SLASH_P_EX(c, first_byte) (*(c) == '/')
106+
#define IS_SLASH_P_EX(c, first_byte) IS_SLASH_P(c)
107107

108108
#endif
109109

0 commit comments

Comments
 (0)