quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

commit b2ac9fffb42f4aff96b14054b56766698422e9bc
parent 600e97aecb98b1559b70877ec4efaa5d63f54d89
Author: Florian Dold <florian@dold.me>
Date:   Sat, 24 Jun 2023 17:42:37 +0200

fix lock

Diffstat:
Mtaler_wallet_core_lib.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/taler_wallet_core_lib.c b/taler_wallet_core_lib.c @@ -98,8 +98,8 @@ TALER_WALLET_send_request (struct TALER_WALLET_Instance *twi, { int ret; pthread_mutex_lock(&twi->handle_mutex); - pthread_mutex_unlock(&twi->handle_mutex); ret = js_os_post_message_from_host(twi->ctx, msg); + pthread_mutex_unlock(&twi->handle_mutex); return ret; }