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

Commit a5dd812f authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "trusty: Increase maximum number of coverage counters" am: d669e629 am: a0649762

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

Change-Id: I4eac9c1dc5aa0472824de8dfbc883d7adb379c79
parents 4cebacb5 a0649762
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 = 0x8000;
static const size_t kMaxNumCounters = 0x10000;
__attribute__((section("__libfuzzer_extra_counters"))) volatile uint8_t counters[kMaxNumCounters];

namespace android {