mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00

This patch allows libFuzzer to fuzz applications instrumented with MSan without recompiling libFuzzer with MSan instrumentation. Fixes https://github.com/google/sanitizers/issues/958. Differential Revision: https://reviews.llvm.org/D48891 llvm-svn: 336619
15 lines
306 B
C++
15 lines
306 B
C++
#include <cstdint>
|
|
#include <cstring>
|
|
|
|
volatile size_t Sink;
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
if (Size < 4) return 0;
|
|
if (Data[0] == 'F' && Data[1] == 'U' && Data[2] == 'Z' && Data[3] == 'Z') {
|
|
char uninit[7];
|
|
Sink = strlen(uninit);
|
|
}
|
|
return 0;
|
|
}
|
|
|