From: Richard Levitte Date: Wed, 9 Mar 2016 00:39:00 +0000 (+0100) Subject: Fix a typo in dynamic_load() X-Git-Tag: OpenSSL_1_1_0-pre4~214 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=52c14c5454c75c4ec3d7929b3119e44f9844ab39;p=oweals%2Fopenssl.git Fix a typo in dynamic_load() Reviewed-by: Matt Caswell --- diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c index 8d29d9a1cf..597151b087 100644 --- a/crypto/engine/eng_dyn.c +++ b/crypto/engine/eng_dyn.c @@ -510,8 +510,8 @@ static int dynamic_load(ENGINE *e, dynamic_data_ctx *ctx) * would also increase opaqueness. */ fns.static_state = ENGINE_get_static_state(); - CRYPTO_get_mem_functions(fns.mem_fns.malloc_fn, fns.mem_fns.realloc_fn, - fns.mem_fns.free_fn); + CRYPTO_get_mem_functions(&fns.mem_fns.malloc_fn, &fns.mem_fns.realloc_fn, + &fns.mem_fns.free_fn); /* * Now that we've loaded the dynamic engine, make sure no "dynamic" * ENGINE elements will show through.