mirror of
https://github.com/monero-project/monero.git
synced 2025-01-05 10:29:34 +00:00
Fix conditional __AFL_LOOP definition
__AFL_LOOP function definition conflicts with macro definition. Conditionally add __AFL_LOOP function definition only when macro is not defined. Resolves #7230
This commit is contained in:
parent
a1eca8ca7e
commit
cf51fc1306
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
|||
|
||||
#ifndef OSSFUZZ
|
||||
|
||||
#if (!defined(__clang__) || (__clang__ < 5))
|
||||
#ifndef __AFL_LOOP
|
||||
static int __AFL_LOOP(int)
|
||||
{
|
||||
static int once = 0;
|
||||
|
|
Loading…
Reference in a new issue