summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-09 01:39:00 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-09 01:41:11 +0100
commit52c14c5454c75c4ec3d7929b3119e44f9844ab39 (patch)
treea5f6474ce4c550a0b87a8f5065d8f0956101121f /crypto/engine
parent0b1a07c8a70486534526d8967f03e32806da5661 (diff)
Fix a typo in dynamic_load()
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_dyn.c4
1 files changed, 2 insertions, 2 deletions
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.