summaryrefslogtreecommitdiff
path: root/sapi/isapi
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2003-05-17 08:06:53 +0000
committerSascha Schumann <sas@php.net>2003-05-17 08:06:53 +0000
commit80538812119d4f940fce2bc408761a28c8b3add5 (patch)
tree4e5aaf7263ea9a9c7f098900c7190219e931fc73 /sapi/isapi
parent0c376684c73c575cb8a694ee458a56eba1c602d8 (diff)
downloadphp-git-80538812119d4f940fce2bc408761a28c8b3add5.tar.gz
protect against further surprises by initializing all zend_file_handle's
Diffstat (limited to 'sapi/isapi')
-rw-r--r--sapi/isapi/php4isapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c
index fc8f5d9667..88d95ebdaf 100644
--- a/sapi/isapi/php4isapi.c
+++ b/sapi/isapi/php4isapi.c
@@ -717,7 +717,7 @@ BOOL exceptionhandler(LPEXCEPTION_POINTERS *e, LPEXCEPTION_POINTERS ep)
DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB)
{
- zend_file_handle file_handle;
+ zend_file_handle file_handle = {0};
zend_bool stack_overflown=0;
#ifdef PHP_ENABLE_SEH
LPEXCEPTION_POINTERS e;