exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 6fd44ff2ea8f86655ac6450efd88da85b48211cf
parent 680b671b298201809e89592f761e92c393757058
Author: MS <ms@taler.net>
Date:   Mon, 27 Jul 2020 14:03:11 +0200

fix segfault

Diffstat:
Msrc/bank-lib/taler-bank-transfer.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bank-lib/taler-bank-transfer.c b/src/bank-lib/taler-bank-transfer.c @@ -132,7 +132,7 @@ do_shutdown (void *cls) TALER_BANK_debit_history_cancel (dhh); dhh = NULL; } - if (NULL != eh) + if ( (NULL != eh) && (0 != global_ret)) { TALER_BANK_transfer_cancel (eh); eh = NULL;