From a9a135b4f533515a3dcbb0a1776fada33f4fddae Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Thu, 29 Sep 2016 15:51:28 +0000 Subject: [libFuzzer] initialize ValueBitMap::NumBits llvm-svn: 282721 --- llvm/lib/Fuzzer/FuzzerValueBitMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Fuzzer/FuzzerValueBitMap.h b/llvm/lib/Fuzzer/FuzzerValueBitMap.h index bc191e49fae..97f4c5e51b9 100644 --- a/llvm/lib/Fuzzer/FuzzerValueBitMap.h +++ b/llvm/lib/Fuzzer/FuzzerValueBitMap.h @@ -69,7 +69,7 @@ struct ValueBitMap { } private: - size_t NumBits; + size_t NumBits = 0; uintptr_t Map[kMapSizeInWords] __attribute__((aligned(512))); }; -- cgit v1.2.3