summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-07-08 23:06:59 +0200
committerAndy Polyakov <appro@openssl.org>2014-07-09 22:45:52 +0200
commitf50f0c6aa31502ab596ad94757ea9be791c62cc8 (patch)
treeb221f3990e292b9d37fa3f8ca2447a3ef119a062 /crypto/engine
parent2064e2db08eb90da711999445680d45c44483e82 (diff)
Please Clang's sanitizer, addendum.
(cherry picked from commit d11c70b2c2a655d112fa72d34c6702e9aa2eff79)
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_table.c6
1 files changed, 4 insertions, 2 deletions
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);
}