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

Commit f68ffcfc authored by Mitch Phillips's avatar Mitch Phillips
Browse files

Fix variable name typo.

When enabling asserts, the expansion clearly has a typo in the name.

Bug: 160324350
Test: Build with -UNDEBUG
Change-Id: I3eb9927c3c3db449ab95e4c25c0d03940e1ec371
parent 259ca8e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ namespace fuzz {
std::vector<std::vector<uint8_t>> SplitInput(
    const uint8_t* data, size_t size, const uint8_t* separator, size_t separatorSize) {
  std::vector<std::vector<uint8_t>> result;
  assert(SeparatorSize > 0);
  assert(separatorSize > 0);
  auto beg = data;
  auto end = data + size;
  while (const uint8_t* pos = (const uint8_t*)memmem(beg, end - beg, separator, separatorSize)) {