commit | a9a135b4f533515a3dcbb0a1776fada33f4fddae | [log] [tgz] |
---|---|---|
author | Kostya Serebryany <kcc@google.com> | Thu Sep 29 15:51:28 2016 +0000 |
committer | Kostya Serebryany <kcc@google.com> | Thu Sep 29 15:51:28 2016 +0000 |
tree | 738aa010fa11e5855d5bfc0e049a05ee42da9f77 | |
parent | 97a4820ccdbee1f2fc67e8754903dc3a1a673dfd [diff] [blame] |
[libFuzzer] initialize ValueBitMap::NumBits llvm-svn: 282721
diff --git a/llvm/lib/Fuzzer/FuzzerValueBitMap.h b/llvm/lib/Fuzzer/FuzzerValueBitMap.h index bc191e4..97f4c5e 100644 --- a/llvm/lib/Fuzzer/FuzzerValueBitMap.h +++ b/llvm/lib/Fuzzer/FuzzerValueBitMap.h
@@ -69,7 +69,7 @@ } private: - size_t NumBits; + size_t NumBits = 0; uintptr_t Map[kMapSizeInWords] __attribute__((aligned(512))); };