Loading trusty/fuzz/counters.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ using android::base::Result; * We don't know how many counters the coverage record will contain. So, eyeball * the size of this section. */ static const size_t kMaxNumCounters = 0x8000; static const size_t kMaxNumCounters = 0x10000; __attribute__((section("__libfuzzer_extra_counters"))) volatile uint8_t counters[kMaxNumCounters]; namespace android { Loading Loading
trusty/fuzz/counters.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ using android::base::Result; * We don't know how many counters the coverage record will contain. So, eyeball * the size of this section. */ static const size_t kMaxNumCounters = 0x8000; static const size_t kMaxNumCounters = 0x10000; __attribute__((section("__libfuzzer_extra_counters"))) volatile uint8_t counters[kMaxNumCounters]; namespace android { Loading