Merge "sparse_fuzzer: Bug fix"
This commit is contained in:
commit
a9eee03c56
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue