]> granicus.if.org Git - php/commitdiff
Fixed missing opening bracket
authorStefan Esser <sesser@php.net>
Wed, 1 Dec 2004 23:47:54 +0000 (23:47 +0000)
committerStefan Esser <sesser@php.net>
Wed, 1 Dec 2004 23:47:54 +0000 (23:47 +0000)
TSRM/tsrm_virtual_cwd.c

index 26104f262fd2f8bf8f4ff6049f88cb7d89156177..a0b622c03ec9a4f88da7e3e8aa599403540becac 100644 (file)
@@ -309,7 +309,7 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func
         * This can happen under solaris when a dir does not have read permissions
         * but *does* have execute permissions */
        if (IS_ABSOLUTE_PATH(path, path_length) || (state->cwd_length < 1)) {
-               if (use_realpath)
+               if (use_realpath) {
                        if (realpath(path, resolved_path)) {
                                path = resolved_path;
                                path_length = strlen(path);