diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 22:20:44 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 22:20:44 +0000 |
commit | 30a06c142de3b9198a44251b1ccc11fa838ef7ef (patch) | |
tree | e7ad7f6460ac26e6ae02688361b4becdeb9a7e64 /net | |
parent | cfc06f12ec93799d758164c22b4e53125eaade8d (diff) | |
download | chromium_src-30a06c142de3b9198a44251b1ccc11fa838ef7ef.zip chromium_src-30a06c142de3b9198a44251b1ccc11fa838ef7ef.tar.gz chromium_src-30a06c142de3b9198a44251b1ccc11fa838ef7ef.tar.bz2 |
Linux: fix uninit warnings when building -Os.
http://codereview.chromium.org/401002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32105 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/http_auth_handler_ntlm_portable.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_auth_handler_ntlm_portable.cc b/net/http/http_auth_handler_ntlm_portable.cc index 034fefc..7976878 100644 --- a/net/http/http_auth_handler_ntlm_portable.cc +++ b/net/http/http_auth_handler_ntlm_portable.cc @@ -678,7 +678,7 @@ int HttpAuthHandlerNTLM::GetNextToken(const void* in_token, uint32 in_token_len, void** out_token, uint32* out_token_len) { - int rv; + int rv = 0; // If in_token is non-null, then assume it contains a type 2 message... if (in_token) { |