diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-03-05 21:41:55 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-03-05 21:41:55 +0100 |
commit | ca5f0c4d6f2969bfbde9d8cb5fc7f90a95c3d712 (patch) | |
tree | 96018c9e83f98bae837c6fd27c594ce6aad2c0d7 /src/lib/exchange_api_deposit.c | |
parent | 5985f73d4219fd9bbfbc640aeaca409cdf571b27 (diff) |
fix #6786: do not die on bogus URL
Diffstat (limited to 'src/lib/exchange_api_deposit.c')
-rw-r--r-- | src/lib/exchange_api_deposit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/exchange_api_deposit.c b/src/lib/exchange_api_deposit.c index a3fb8667a..e1b3e6cdd 100644 --- a/src/lib/exchange_api_deposit.c +++ b/src/lib/exchange_api_deposit.c @@ -741,6 +741,12 @@ TALER_EXCHANGE_deposit (struct TALER_EXCHANGE_Handle *exchange, dh->cb_cls = cb_cls; dh->url = TEAH_path_to_url (exchange, arg_str); + if (NULL == dh->url) + { + GNUNET_free (dh); + json_decref (deposit_obj); + return NULL; + } dh->depconf.purpose.size = htonl (sizeof (struct TALER_DepositConfirmationPS)); dh->depconf.purpose.purpose = htonl ( |