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

Commit dcda1ea8 authored by Alessio Balsini's avatar Alessio Balsini Committed by android-build-merger
Browse files

Merge "Fix fuzzer name and sizeof(array)" am: f5b29279 am: 3b549125 am: 7a03a563

am: 213b4d87

Change-Id: Ieb2896f2ce0356b0e65aa82b070bd9f70ad147b4
parents 60f11787 213b4d87
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ cc_test {
}

cc_fuzz {
  name: "dm_table_fuzzer",
  name: "dm_linear_table_fuzzer",
  defaults: ["fs_mgr_defaults"],
  srcs: [
    "dm_linear_fuzzer.cpp",
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ void EXPECT_TRUE(const T& a) {
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
    uint64_t val[6];

    if (size != sizeof(*val)) {
    if (size != sizeof(val)) {
        return 0;
    }