diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-08-09 18:42:38 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-08-09 18:42:38 +0200 |
commit | 30959d1380ed79d71baee10ec547027b4911c760 (patch) | |
tree | 6565c3a2e036d00a1aa258acc81b534bcfe81a4a /src/mint/taler-mint-httpd_refresh.c | |
parent | a7d36ed906da0b9603799cdd07e30ea1ffbd49b5 (diff) |
fix array dimensions to match server expecations, fix server to report location of parse errors more precisely
Diffstat (limited to 'src/mint/taler-mint-httpd_refresh.c')
-rw-r--r-- | src/mint/taler-mint-httpd_refresh.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_refresh.c b/src/mint/taler-mint-httpd_refresh.c index 687fb998d..d870f3a33 100644 --- a/src/mint/taler-mint-httpd_refresh.c +++ b/src/mint/taler-mint-httpd_refresh.c @@ -700,6 +700,7 @@ TMH_REFRESH_handler_refresh_melt (struct TMH_RequestHandler *rh, JSON_ARRAY, &coin_detail); if (GNUNET_OK != res) { + GNUNET_break_op (0); TMH_PARSE_release_data (spec); return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES; } @@ -711,6 +712,7 @@ TMH_REFRESH_handler_refresh_melt (struct TMH_RequestHandler *rh, JSON_ARRAY, &coin_detail); if (GNUNET_OK != res) { + GNUNET_break_op (0); TMH_PARSE_release_data (spec); return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES; } |