summaryrefslogtreecommitdiff
path: root/src/lib/exchange_api_wire.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-05 21:41:55 +0100
committerChristian Grothoff <christian@grothoff.org>2021-03-05 21:41:55 +0100
commitca5f0c4d6f2969bfbde9d8cb5fc7f90a95c3d712 (patch)
tree96018c9e83f98bae837c6fd27c594ce6aad2c0d7 /src/lib/exchange_api_wire.c
parent5985f73d4219fd9bbfbc640aeaca409cdf571b27 (diff)
downloadexchange-ca5f0c4d6f2969bfbde9d8cb5fc7f90a95c3d712.tar.gz
exchange-ca5f0c4d6f2969bfbde9d8cb5fc7f90a95c3d712.tar.bz2
exchange-ca5f0c4d6f2969bfbde9d8cb5fc7f90a95c3d712.zip
fix #6786: do not die on bogus URL
Diffstat (limited to 'src/lib/exchange_api_wire.c')
-rw-r--r--src/lib/exchange_api_wire.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/exchange_api_wire.c b/src/lib/exchange_api_wire.c
index eb0894c80..4586d2ea1 100644
--- a/src/lib/exchange_api_wire.c
+++ b/src/lib/exchange_api_wire.c
@@ -435,6 +435,11 @@ TALER_EXCHANGE_wire (struct TALER_EXCHANGE_Handle *exchange,
wh->cb_cls = wire_cb_cls;
wh->url = TEAH_path_to_url (exchange,
"/wire");
+ if (NULL == wh->url)
+ {
+ GNUNET_free (wh);
+ return NULL;
+ }
eh = TALER_EXCHANGE_curl_easy_get_ (wh->url);
GNUNET_break (CURLE_OK ==
curl_easy_setopt (eh,