summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php5.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-10-18 23:51:54 +0000
committerAntony Dovgal <tony2001@php.net>2005-10-18 23:51:54 +0000
commite5928942ace819e4e73fba817542efde84f0de68 (patch)
tree53bfdfa703d2cdad153a116fbb14cc0b39b76e21 /sapi/apache/mod_php5.c
parent24046edbbb472103ba561d7589f4786d0fe8067e (diff)
downloadphp-git-e5928942ace819e4e73fba817542efde84f0de68.tar.gz
MFH: initialize SG(request_info).auth_digest
Diffstat (limited to 'sapi/apache/mod_php5.c')
-rw-r--r--sapi/apache/mod_php5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c
index b112d7162a..2c31e4d30a 100644
--- a/sapi/apache/mod_php5.c
+++ b/sapi/apache/mod_php5.c
@@ -500,6 +500,7 @@ static void init_request_info(TSRMLS_D)
SG(request_info).auth_user = NULL;
SG(request_info).auth_password = NULL;
+ SG(request_info).auth_digest = NULL;
if (authorization && (!PG(safe_mode) || (PG(safe_mode) && !auth_type(r)))) {
char *p = getword(r->pool, &authorization, ' ');