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

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

Merge "Fix double close in RecordedTransaction fuzzer" am: 5813e688

parents f3480955 5813e688
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
    rewind(intermediateFile);
    int fileNumber = fileno(intermediateFile);

    android::base::unique_fd fd(fileNumber);
    android::base::unique_fd fd(dup(fileNumber));

    auto transaction = android::binder::debug::RecordedTransaction::fromFile(fd);