summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-06 19:10:37 +0000
committerilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-06 19:10:37 +0000
commit726598887b3ce8bc659b5d0c4f96950f239f686d (patch)
tree74b89f4c21ea896647658ae65e418972c9d1bb3f /net
parentd11f5d2b616c6a69bf61cf5213429b7b04e1ec4c (diff)
downloadchromium_src-726598887b3ce8bc659b5d0c4f96950f239f686d.zip
chromium_src-726598887b3ce8bc659b5d0c4f96950f239f686d.tar.gz
chromium_src-726598887b3ce8bc659b5d0c4f96950f239f686d.tar.bz2
Revert 204547 "Fix errors when building android with coverage=1"
CQ error. Committed without tryjobs. > Fix errors when building android with coverage=1 > > Android builds with coverage=1 fail due to uninitialized variable > warnings in base/linux_util.cc and base/net/net_util.cc > > BUG=245467 > > Review URL: https://chromiumcodereview.appspot.com/16077010 TBR=rwalker@codeaurora.org Review URL: https://codereview.chromium.org/16415008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/base/net_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/net_util.cc b/net/base/net_util.cc
index bf7fbb8..c5f5673 100644
--- a/net/base/net_util.cc
+++ b/net/base/net_util.cc
@@ -267,7 +267,7 @@ bool IsComponentCoveredByLang(const icu::UnicodeSet& component_characters,
const std::string& lang) {
CR_DEFINE_STATIC_LOCAL(
const icu::UnicodeSet, kASCIILetters, ('a', 'z'));
- icu::UnicodeSet* lang_set = NULL;
+ icu::UnicodeSet* lang_set;
// We're called from both the UI thread and the history thread.
{
base::AutoLock lock(g_lang_set_lock.Get());