From: Antony Dovgal Date: Tue, 18 Oct 2005 23:51:54 +0000 (+0000) Subject: MFH: initialize SG(request_info).auth_digest X-Git-Tag: php-5.1.0RC4~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5928942ace819e4e73fba817542efde84f0de68;p=php MFH: initialize SG(request_info).auth_digest --- 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, ' ');