mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
mdns/fuzzer: Fix non-instrumentation test to reproduce fuzzer issues
Regression from 2893d7e21b skipped reading the packet causing issues when locally reproducing crashed found by the fuzzer * Original commit: espressif/esp-idf@dae803335e
This commit is contained in:
committed by
suren-gabrielyan-espressif
parent
8a120829e2
commit
5f6b6f9273
@ -205,6 +205,7 @@ int main(int argc, char** argv)
|
||||
// Note: parameter1 is a file (mangled packet) which caused the crash
|
||||
file = fopen(argv[1], "r");
|
||||
assert(file >= 0 );
|
||||
len = fread(buf, 1, 1460, file);
|
||||
fclose(file);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user