From 7a259fb7bdbbab8e96bab5f8a1aa5cd49422a4ab Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 9 May 2017 13:28:01 +0200 Subject: nicely handle error from json_dumps without assert --- src/exchange-lib/exchange_api_payback.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/exchange-lib/exchange_api_payback.c b/src/exchange-lib/exchange_api_payback.c index 8096e55f8..40b713857 100644 --- a/src/exchange-lib/exchange_api_payback.c +++ b/src/exchange-lib/exchange_api_payback.c @@ -321,10 +321,16 @@ TALER_EXCHANGE_payback (struct TALER_EXCHANGE_Handle *exchange, ph->url = MAH_path_to_url (exchange, "/payback"); eh = curl_easy_init (); - GNUNET_assert (NULL != (ph->json_enc = - json_dumps (payback_obj, - JSON_COMPACT))); + ph->json_enc = json_dumps (payback_obj, + JSON_COMPACT); json_decref (payback_obj); + if (NULL == ph->json_enc) + { + GNUNET_break (0); + GNUNET_free (ph->url); + GNUNET_free (ph); + return NULL; + } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "URL for payback: `%s'\n", ph->url); -- cgit v1.2.3