summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-07-07 00:02:34 +0000
committerFelipe Pena <felipe@php.net>2009-07-07 00:02:34 +0000
commit44bf8605166d4bed23287629eac5a762f6f45c73 (patch)
tree489d57218856cd1ec979f1ee70873e68b9e5d12b /TSRM
parent387fbb2d4e14e3c0bea68fece658a88e3cdb2e2d (diff)
downloadphp-git-44bf8605166d4bed23287629eac5a762f6f45c73.tar.gz
- MFH: Fixed compiler warning
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_virtual_cwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c
index 9bfecd056c..14cf7ca1e0 100644
--- a/TSRM/tsrm_virtual_cwd.c
+++ b/TSRM/tsrm_virtual_cwd.c
@@ -564,13 +564,13 @@ static int tsrm_realpath_r(char *path, int start, int len, int *ll, time_t *t, i
#ifdef TSRM_WIN32
WIN32_FIND_DATA data;
HANDLE hFind;
+ TSRM_ALLOCA_FLAG(use_heap_large)
#else
struct stat st;
#endif
realpath_cache_bucket *bucket;
char *tmp;
TSRM_ALLOCA_FLAG(use_heap)
- TSRM_ALLOCA_FLAG(use_heap_large)
while (1) {
if (len <= start) {