code clean up
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@915 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
8f07263463
commit
eefa931598
14
xcache.c
14
xcache.c
|
@ -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) /* {{{ */
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue