mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-25 17:02:26 +00:00
fuzz_tests: fix init check in oss-fuzz mode
This commit is contained in:
parent
c4b74208c7
commit
bde7f1c5cc
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ extern "C" { \
|
||||||
static bool first = true; \
|
static bool first = true; \
|
||||||
if (first) \
|
if (first) \
|
||||||
{ \
|
{ \
|
||||||
if (!init()) \
|
if (init()) \
|
||||||
return 1; \
|
return 1; \
|
||||||
first = false; \
|
first = false; \
|
||||||
} \
|
} \
|
||||||
|
|
Loading…
Reference in a new issue