
fielding at apache
May 9, 2008, 11:44 PM
Post #1 of 1
(16 views)
Permalink
|
|
svn commit: r655017 - /httpd/httpd/trunk/modules/aaa/mod_auth_form.c
|
|
Author: fielding Date: Fri May 9 23:44:44 2008 New Revision: 655017 URL: http://svn.apache.org/viewvc?rev=655017&view=rev Log: fix uninitialized variable Modified: httpd/httpd/trunk/modules/aaa/mod_auth_form.c Modified: httpd/httpd/trunk/modules/aaa/mod_auth_form.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_auth_form.c?rev=655017&r1=655016&r2=655017&view=diff ============================================================================== --- httpd/httpd/trunk/modules/aaa/mod_auth_form.c (original) +++ httpd/httpd/trunk/modules/aaa/mod_auth_form.c Fri May 9 23:44:44 2008 @@ -868,6 +868,9 @@ res = get_session_auth(r, &sent_user, &sent_pw, &sent_hash); } + else { + res = APR_SUCCESS; + } /* first test whether the site passphrase matches */ if (APR_SUCCESS == res && sent_user && sent_hash && sent_pw) {
|