Skip to content

Commit 0a0e0ef

Browse files
committed
fix style
1 parent 8d1869d commit 0a0e0ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main/fopen_wrappers.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,9 @@ PHPAPI zend_string *php_resolve_path(const char *filename, size_t filename_lengt
604604
size_t exec_fname_length = ZSTR_LEN(exec_filename);
605605

606606
do {
607-
if (exec_fname_length == 0) break;
607+
if (exec_fname_length == 0) {
608+
break;
609+
}
608610
} while (!IS_SLASH(exec_fname[--exec_fname_length]));
609611
if (exec_fname_length > 0 &&
610612
filename_length < (MAXPATHLEN - 2) &&

0 commit comments

Comments
 (0)