diff options
| author | Zeev Suraski <zeev@php.net> | 1999-12-04 13:25:41 +0000 | 
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-12-04 13:25:41 +0000 | 
| commit | da5464b145be141a4b9a7130d554f73e022acc85 (patch) | |
| tree | 96fe417491a97c49b3c9cc3b3d6557107fa3205d /sapi/isapi/php4isapi.c | |
| parent | 502bb337fe4b4df88dcc5531c62326ed49a08b2e (diff) | |
| download | php-git-da5464b145be141a4b9a7130d554f73e022acc85.tar.gz | |
- zend_file_handles must now flag whether their .filename property should be
  free by Zend or not (uses e*() functions)
Diffstat (limited to 'sapi/isapi/php4isapi.c')
| -rw-r--r-- | sapi/isapi/php4isapi.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index affe58b7a2..1fbb41382e 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -444,6 +444,7 @@ DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB)  	SG(server_context) = lpECB;  	file_handle.filename = sapi_globals->request_info.path_translated; +	file_handle.free_filename = 0;  	file_handle.type = ZEND_HANDLE_FILENAME;  	php_request_startup(CLS_C ELS_CC PLS_CC SLS_CC);  | 
