commit 7a259fb7bdbbab8e96bab5f8a1aa5cd49422a4ab
parent a5fedfeeb88a7a9b8f13aeb49eb43a68a4d7582c
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 9 May 2017 13:28:01 +0200
nicely handle error from json_dumps without assert
Diffstat:
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git 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);