summaryrefslogtreecommitdiff
path: root/main/SAPI.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-12 21:35:16 +0000
committerZeev Suraski <zeev@php.net>1999-05-12 21:35:16 +0000
commit49b01a4b3dc6d660e33801bdae840c9448da11cc (patch)
treef1484e32a32d10e4a1f5ecb58453707d8e017706 /main/SAPI.c
parentcefca57c9c845101cb8d39b0cc062d20e2da791d (diff)
downloadphp-git-49b01a4b3dc6d660e33801bdae840c9448da11cc.tar.gz
Support HTTP Auth under ISAPI. Now, these short pieces of code took *A LOT* of
research :(
Diffstat (limited to 'main/SAPI.c')
-rw-r--r--main/SAPI.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/main/SAPI.c b/main/SAPI.c
index 87be2e3fe8..178e2b8d83 100644
--- a/main/SAPI.c
+++ b/main/SAPI.c
@@ -111,14 +111,6 @@ SAPI_API void sapi_deactivate(SLS_D)
if (SG(request_info).post_data) {
efree(SG(request_info).post_data);
}
- if (SG(server_context)) {
- if (SG(request_info).auth_user) {
- efree(SG(request_info).auth_user);
- }
- if (SG(request_info).auth_password) {
- efree(SG(request_info).auth_password);
- }
- }
}