diff options
author | foobar <sniper@php.net> | 2002-09-16 13:13:52 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-09-16 13:13:52 +0000 |
commit | 55362251c8a0298884fba5ecf82fd58f665592be (patch) | |
tree | 751254841a91af1301214d7b156fb3255e9e604c /sapi/isapi/php4isapi.c | |
parent | 697e0009c89f7126750db04319d0c033cba231fc (diff) | |
download | php-git-55362251c8a0298884fba5ecf82fd58f665592be.tar.gz |
Should fix #19425
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 55127da576..129c345f69 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -743,7 +743,7 @@ DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB) * variable won't be present, so fall back to old behaviour. */ efree( file_handle.filename ); - file_handle.filename = sapi_globals->request_info.path_translated; + file_handle.filename = SG(request_info.path_translated); file_handle.free_filename = 0; } } |