1
0
Fork 0

code clean up

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@915 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 2012-06-23 03:37:46 +00:00
parent 8f07263463
commit eefa931598
1 changed files with 7 additions and 7 deletions

View File

@ -70,10 +70,10 @@ static char *xc_shm_scheme = NULL;
static char *xc_mmap_path = NULL;
static char *xc_coredump_dir = NULL;
static xc_hash_t xc_php_hcache = {0};
static xc_hash_t xc_php_hentry = {0};
static xc_hash_t xc_var_hcache = {0};
static xc_hash_t xc_var_hentry = {0};
static xc_hash_t xc_php_hcache = { 0 };
static xc_hash_t xc_php_hentry = { 0 };
static xc_hash_t xc_var_hcache = { 0 };
static xc_hash_t xc_var_hentry = { 0 };
static zend_ulong xc_php_ttl = 0;
static zend_ulong xc_var_maxttl = 0;
@ -3343,10 +3343,10 @@ typedef BOOL (WINAPI *MINIDUMPWRITEDUMP)(HANDLE hProcess, DWORD dwPid, HANDLE hF
CONST PMINIDUMP_CALLBACK_INFORMATION CallbackParam
);
static PTOP_LEVEL_EXCEPTION_FILTER oldFilter;
static PTOP_LEVEL_EXCEPTION_FILTER oldFilter = NULL;
static HMODULE dbghelpModule = NULL;
static char crash_dumpPath[_MAX_PATH];
static MINIDUMPWRITEDUMP dbghelp_MiniDumpWriteDump;
static char crash_dumpPath[_MAX_PATH] = { 0 };
static MINIDUMPWRITEDUMP dbghelp_MiniDumpWriteDump = NULL;
static LONG WINAPI miniDumperFilter(struct _EXCEPTION_POINTERS *pExceptionInfo) /* {{{ */
{