diff options
author | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-20 04:44:37 +0000 |
---|---|---|
committer | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-20 04:44:37 +0000 |
commit | 82e271fe63c9d5193ddda225964ce58ea97e0f80 (patch) | |
tree | 87715fe53342c86be0f8eab416225eaee0dd634b /net/http | |
parent | dc49eda738c88230bfe22de5722d001a62a03a0d (diff) | |
download | chromium_src-82e271fe63c9d5193ddda225964ce58ea97e0f80.zip chromium_src-82e271fe63c9d5193ddda225964ce58ea97e0f80.tar.gz chromium_src-82e271fe63c9d5193ddda225964ce58ea97e0f80.tar.bz2 |
[Coverity] Init uninitialized member var
CID=106093
BUG=none
R=rvargas@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11194066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163156 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_cache_transaction.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc index 6d21692..2e14343 100644 --- a/net/http/http_cache_transaction.cc +++ b/net/http/http_cache_transaction.cc @@ -136,6 +136,7 @@ HttpCache::Transaction::Transaction( handling_206_(false), cache_pending_(false), done_reading_(false), + io_buf_len_(0), read_offset_(0), effective_load_flags_(0), write_len_(0), |