Skip to content

Commit

Permalink
fixup! hashtable: Support lockless reads
Browse files Browse the repository at this point in the history
  • Loading branch information
t8m committed May 27, 2024
1 parent 5c284a5 commit b30c189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/hashtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static void fuzz_free_cb(HT_VALUE *v)

int FuzzerInitialize(int *argc, char ***argv)
{
HT_CONFIG fuzz_conf = {NULL, fuzz_free_cb, NULL, 1, 0};
HT_CONFIG fuzz_conf = {NULL, fuzz_free_cb, NULL, 0, 1};

OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
ERR_clear_error();
Expand Down

0 comments on commit b30c189

Please sign in to comment.