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

Commit a9eee03c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "sparse_fuzzer: Bug fix"

parents 4ba0e629 1431665c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -23,5 +23,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
  if (!file) {
      return 0;
  }
  return sparse_file_callback(file, false, false, WriteCallback, nullptr);
  int32_t result = sparse_file_callback(file, false, false, WriteCallback, nullptr);
  sparse_file_destroy(file);
  return result;
}