From f50f0c6aa31502ab596ad94757ea9be791c62cc8 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 8 Jul 2014 23:06:59 +0200 Subject: Please Clang's sanitizer, addendum. (cherry picked from commit d11c70b2c2a655d112fa72d34c6702e9aa2eff79) --- crypto/engine/eng_table.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'crypto/engine') diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c index 4fde948185..22cddee40e 100644 --- a/crypto/engine/eng_table.c +++ b/crypto/engine/eng_table.c @@ -346,6 +346,8 @@ void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, ENGINE_PILE_DOALL dall; dall.cb = cb; dall.arg = arg; - lh_ENGINE_PILE_doall_arg(&table->piles, LHASH_DOALL_ARG_FN(int_cb), - ENGINE_PILE_DOALL, &dall); + if (table) + lh_ENGINE_PILE_doall_arg(&table->piles, + LHASH_DOALL_ARG_FN(int_cb), + ENGINE_PILE_DOALL, &dall); } -- cgit v1.2.3