From 347a8793d23036433ab0ba39049f0e832bb05b3d Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Wed, 22 Aug 2018 13:41:38 +0200 Subject: virtual: Don't be too loud about recoverable failure --- p11-kit/virtual.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'p11-kit') diff --git a/p11-kit/virtual.c b/p11-kit/virtual.c index 67b3eed..a027368 100644 --- a/p11-kit/virtual.c +++ b/p11-kit/virtual.c @@ -2792,7 +2792,7 @@ init_wrapper_funcs (Wrapper *wrapper) if (!bind_ffi_closure (wrapper, over, binding->function, (ffi_type **)binding->types, bound)) - return_val_if_reached (false); + return false; } } @@ -2801,7 +2801,7 @@ init_wrapper_funcs (Wrapper *wrapper) binding_C_GetFunctionList, (ffi_type **)get_function_list_args, (void **)&wrapper->bound.C_GetFunctionList)) - return_val_if_reached (false); + return false; /* * These functions are used as a marker to indicate whether this is -- cgit v1.1