Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2413424a authored by Tri Vo's avatar Tri Vo Committed by Automerger Merge Worker
Browse files

Merge "trusty: Increase maximum number of coverage counters" am: ec1d6cae

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1607154

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ibcb061ae723cab3789801d9c4f5a20664b389a1a
parents 204da172 ec1d6cae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = 0x4000;
static const size_t kMaxNumCounters = 0x8000;
__attribute__((section("__libfuzzer_extra_counters"))) volatile uint8_t counters[kMaxNumCounters];

namespace android {