diff options
Diffstat (limited to 'net/http/http_auth_cache.cc')
-rw-r--r-- | net/http/http_auth_cache.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/http_auth_cache.cc b/net/http/http_auth_cache.cc index 3e5007f..95d0d69 100644 --- a/net/http/http_auth_cache.cc +++ b/net/http/http_auth_cache.cc @@ -150,7 +150,8 @@ void HttpAuthCache::Entry::UpdateStaleChallenge( } HttpAuthCache::Entry::Entry() - : nonce_count_(0) { + : scheme_(HttpAuth::AUTH_SCHEME_MAX), + nonce_count_(0) { } void HttpAuthCache::Entry::AddPath(const std::string& path) { |