Questions tagged [libfuzzer]
31 questions
-1
votes
1 answer
Heap buffer overflow--is this a false positive of address sanitizer?
I have the following simple program
void copy(const int16_t *buffer) {
int16_t *b;
memcpy(b,buffer,2);
return ;
}
int LLVMFuzzerTestOneInput(const int16_t *buffer) {
copy(buffer);
return 0;
}
which I compile with clang (v9) using…

panava
- 11
- 1