summaryrefslogtreecommitdiff
path: root/src/json/json_helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-07-18 18:59:11 +0200
committerChristian Grothoff <christian@grothoff.org>2021-07-18 18:59:11 +0200
commit5cec88e87e987d80905e1a9b810c0e77c051f7bf (patch)
treee3f1254c92be280d33f0144c2e42b6cdcdeda071 /src/json/json_helper.c
parent67559ad6261e6d272df6665c8c0e124fd795a6eb (diff)
downloadexchange-5cec88e87e987d80905e1a9b810c0e77c051f7bf.tar.gz
exchange-5cec88e87e987d80905e1a9b810c0e77c051f7bf.tar.bz2
exchange-5cec88e87e987d80905e1a9b810c0e77c051f7bf.zip
-fix segv
Diffstat (limited to 'src/json/json_helper.c')
-rw-r--r--src/json/json_helper.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c
index c3788f863..866c094d0 100644
--- a/src/json/json_helper.c
+++ b/src/json/json_helper.c
@@ -115,6 +115,7 @@ parse_amount_nbo (void *cls,
struct GNUNET_JSON_Specification *spec)
{
struct TALER_AmountNBO *r_amount = spec->ptr;
+ const char *sv;
(void) cls;
if (! json_is_string (root))
@@ -122,10 +123,14 @@ parse_amount_nbo (void *cls,
GNUNET_break (0);
return GNUNET_SYSERR;
}
+ sv = json_string_value (root);
if (GNUNET_OK !=
- TALER_string_to_amount_nbo (json_string_value (root),
+ TALER_string_to_amount_nbo (sv,
r_amount))
{
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "`%s' is not a valid amount\n",
+ sv);
GNUNET_break_op (0);
return GNUNET_SYSERR;
}
@@ -172,7 +177,8 @@ parse_abs_time (void *cls,
GNUNET_break_op (0);
return GNUNET_SYSERR;
}
- json_t_ms = json_object_get (root, "t_ms");
+ json_t_ms = json_object_get (root,
+ "t_ms");
if (json_is_integer (json_t_ms))
{
tval = json_integer_value (json_t_ms);
@@ -196,16 +202,18 @@ parse_abs_time (void *cls,
if (json_is_string (json_t_ms))
{
const char *val;
+
val = json_string_value (json_t_ms);
if ((0 == strcasecmp (val, "never")))
{
*abs = GNUNET_TIME_UNIT_FOREVER_ABS;
return GNUNET_OK;
}
- GNUNET_break_op (0);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "`%s' is not a valid absolute time\n",
+ json_string_value (json_t_ms));
return GNUNET_SYSERR;
}
- GNUNET_break_op (0);
return GNUNET_SYSERR;
}
@@ -252,7 +260,10 @@ parse_abs_time_nbo (void *cls,
parse_abs_time (NULL,
root,
&ispec))
+ {
+ GNUNET_break_op (0);
return GNUNET_SYSERR;
+ }
*abs = GNUNET_TIME_absolute_hton (a);
return GNUNET_OK;
}