From fc17c430b1ac82b9b6ce4c70dba750fd74090dee Mon Sep 17 00:00:00 2001 From: Alan Jowett Date: Fri, 19 Apr 2024 10:32:47 -0700 Subject: [PATCH] Update tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp Co-authored-by: Dave Thaler --- tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp b/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp index c85e21b5a3..64f44cc2ef 100644 --- a/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp +++ b/tests/libfuzzer/verifier_fuzzer/libfuzz_harness.cpp @@ -52,7 +52,7 @@ FUZZ_EXPORT int __cdecl LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) std::stringstream stream(std::string((const char*)data, size)); ELFIO::elfio reader; - // Read the ELF file from the stream to determine it's length. + // Read the ELF file from the stream to determine its length. // This leaves the stream at the end of the ELF file. // All data after the ELF file is considered the data to be passed to the program. if (!reader.load(stream)) {