From: Stefan Esser Date: Wed, 1 Dec 2004 23:47:54 +0000 (+0000) Subject: Fixed missing opening bracket X-Git-Tag: php-4.3.10RC2~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26b45cf15f4390da6e8b7beb6993efd9c8256f7c;p=php Fixed missing opening bracket --- diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 26104f262f..a0b622c03e 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -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);