From: Anatol Belski Date: Sun, 14 Sep 2014 15:00:34 +0000 (+0200) Subject: avoid repeated strlen usage X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90972355b3d23e8c099e119cb7b2e0fbb463beab;p=php avoid repeated strlen usage --- diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index 0b8228aafb..7a7ab5dfcb 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -212,7 +212,8 @@ TSRM_API int tsrm_win32_access(const char *pathname, int mode TSRMLS_DC) DWORD type; return GetBinaryType(pathname, &type) ? 0 : -1; } else { - if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) { + size_t pathname_len = strlen(pathname) + 1; + if(!IS_ABSOLUTE_PATH(pathname, pathname_len)) { real_path = (char *)malloc(MAX_PATH); if(tsrm_realpath(pathname, real_path TSRMLS_CC) == NULL) { goto Finished;