fuzz_tests: fix init check in oss-fuzz mode

This commit is contained in:
moneromooo-monero 2020-06-14 16:10:23 +00:00
parent c4b74208c7
commit bde7f1c5cc
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ extern "C" { \
static bool first = true; \
if (first) \
{ \
if (!init()) \
if (init()) \
return 1; \
first = false; \
} \