Skip to content

Commit fa684c5

Browse files
committed
Whitespace
1 parent a928a24 commit fa684c5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

main/fopen_wrappers.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,16 +247,16 @@ PHPAPI int php_check_open_basedir(char *path)
247247
*/
248248
static FILE *php_fopen_and_set_opened_path(const char *path, char *mode, char **opened_path)
249249
{
250-
FILE *fp;
250+
FILE *fp;
251251

252-
if (php_check_open_basedir((char *)path)) {
253-
return NULL;
254-
}
255-
fp = VCWD_FOPEN(path, mode);
256-
if (fp && opened_path) {
257-
*opened_path = expand_filepath(path,NULL);
258-
}
259-
return fp;
252+
if (php_check_open_basedir((char *)path)) {
253+
return NULL;
254+
}
255+
fp = VCWD_FOPEN(path, mode);
256+
if (fp && opened_path) {
257+
*opened_path = expand_filepath(path,NULL);
258+
}
259+
return fp;
260260
}
261261
/* }}} */
262262

0 commit comments

Comments
 (0)