From: Kalle Sommer Nielsen Date: Mon, 15 Sep 2014 08:35:39 +0000 (+0200) Subject: optimize path length retrieval X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~30^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed55d52fa7bca002a1e2655490f804d0275c03fa;p=php optimize path length retrieval --- diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index 7afa04c7d5..a4aa10fce8 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -759,11 +759,15 @@ PHPAPI char *expand_filepath_with_mode(const char *filepath, char *real_path, co cwd_state new_state; char cwd[MAXPATHLEN]; int copy_len; - int path_len = (int)strlen(filepath); + int path_len; if (!filepath[0]) { return NULL; - } else if (IS_ABSOLUTE_PATH(filepath, path_len)) { + } + + path_len = (int)strlen(filepath); + + if (IS_ABSOLUTE_PATH(filepath, path_len)) { cwd[0] = '\0'; } else { const char *iam = SG(request_info).path_translated;