From 8162dbddd8c2253456985524904f4c7f76198bc1 Mon Sep 17 00:00:00 2001 From: Xuefer Date: Tue, 29 Sep 2009 14:00:36 +0000 Subject: [PATCH] initize file/dir path git-svn-id: svn://svn.lighttpd.net/xcache/trunk@686 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- xcache.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/xcache.c b/xcache.c index 82c6622..a2624e5 100644 --- a/xcache.c +++ b/xcache.c @@ -1074,6 +1074,14 @@ stat_done: xce->hvalue = xc_hash_fold(hv, &xc_php_hentry); xce->type = XC_TYPE_PHP; + + xce->filepath = NULL; + xce->dirpath = NULL; +#ifdef IS_UNICODE + xce->ufilepath = NULL; + xce->udirpath = NULL; +#endif + return SUCCESS; } /* }}} */