Bug 726761 - don't check count sums when deserializing SampleSets; r=cjones

This commit is contained in:
Nathan Froyd 2012-02-13 13:46:32 -08:00
parent 656ecac69f
commit b8e1dc11a5

View File

@ -775,8 +775,8 @@ bool Histogram::SampleSet::Deserialize(void** iter, const Pickle& pickle) {
counts_.push_back(i);
count += i;
}
DCHECK_EQ(count, redundant_count_);
return count == redundant_count_;
return true;
}
//------------------------------------------------------------------------------