1
0
mirror of https://github.com/php/php-src.git synced 2026-04-12 18:43:37 +02:00

Whitespace

This commit is contained in:
Zeev Suraski
2001-07-10 18:49:47 +00:00
parent a928a2422b
commit fa684c5bd4

View File

@@ -247,16 +247,16 @@ PHPAPI int php_check_open_basedir(char *path)
*/
static FILE *php_fopen_and_set_opened_path(const char *path, char *mode, char **opened_path)
{
FILE *fp;
FILE *fp;
if (php_check_open_basedir((char *)path)) {
return NULL;
}
fp = VCWD_FOPEN(path, mode);
if (fp && opened_path) {
*opened_path = expand_filepath(path,NULL);
}
return fp;
if (php_check_open_basedir((char *)path)) {
return NULL;
}
fp = VCWD_FOPEN(path, mode);
if (fp && opened_path) {
*opened_path = expand_filepath(path,NULL);
}
return fp;
}
/* }}} */