check json_array_append_new() return values, proper logging on errors
This commit is contained in:
parent
a3b71ac75b
commit
7cb48a720b
@ -516,8 +516,10 @@ decode_keys_json (const json_t *resp_obj,
|
|||||||
unsigned int current;
|
unsigned int current;
|
||||||
|
|
||||||
if (JSON_OBJECT != json_typeof (resp_obj))
|
if (JSON_OBJECT != json_typeof (resp_obj))
|
||||||
|
{
|
||||||
|
GNUNET_break_op (0);
|
||||||
return GNUNET_SYSERR;
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
/* check the version */
|
/* check the version */
|
||||||
{
|
{
|
||||||
const char *ver;
|
const char *ver;
|
||||||
@ -527,10 +529,14 @@ decode_keys_json (const json_t *resp_obj,
|
|||||||
GNUNET_JSON_spec_end()
|
GNUNET_JSON_spec_end()
|
||||||
};
|
};
|
||||||
|
|
||||||
EXITIF (GNUNET_OK !=
|
if (GNUNET_OK !=
|
||||||
GNUNET_JSON_parse (resp_obj,
|
GNUNET_JSON_parse (resp_obj,
|
||||||
spec,
|
spec,
|
||||||
NULL, NULL));
|
NULL, NULL))
|
||||||
|
{
|
||||||
|
GNUNET_break_op (0);
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
if (3 != sscanf (ver,
|
if (3 != sscanf (ver,
|
||||||
"%u:%u:%u",
|
"%u:%u:%u",
|
||||||
¤t,
|
¤t,
|
||||||
|
@ -1104,8 +1104,9 @@ add_auditor_entry (void *cls,
|
|||||||
"denomination_keys", ae->ar,
|
"denomination_keys", ae->ar,
|
||||||
"auditor_url", ae->auditor_url,
|
"auditor_url", ae->auditor_url,
|
||||||
"auditor_pub", GNUNET_JSON_from_data_auto (ae->apub));
|
"auditor_pub", GNUNET_JSON_from_data_auto (ae->apub));
|
||||||
|
GNUNET_assert (0 ==
|
||||||
json_array_append_new (rbc->auditors_array,
|
json_array_append_new (rbc->auditors_array,
|
||||||
ao);
|
ao));
|
||||||
GNUNET_free (ae);
|
GNUNET_free (ae);
|
||||||
return GNUNET_OK;
|
return GNUNET_OK;
|
||||||
}
|
}
|
||||||
@ -1211,12 +1212,13 @@ build_keys_response (const struct ResponseFactoryContext *rfc,
|
|||||||
ae,
|
ae,
|
||||||
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
||||||
}
|
}
|
||||||
|
GNUNET_assert (0 ==
|
||||||
json_array_append_new (ae->ar,
|
json_array_append_new (ae->ar,
|
||||||
json_pack ("{s:o, s:o}",
|
json_pack ("{s:o, s:o}",
|
||||||
"denom_pub_h",
|
"denom_pub_h",
|
||||||
GNUNET_JSON_from_data_auto (&denom_key_hash),
|
GNUNET_JSON_from_data_auto (&denom_key_hash),
|
||||||
"auditor_sig",
|
"auditor_sig",
|
||||||
GNUNET_JSON_from_data_auto (&as->asig)));
|
GNUNET_JSON_from_data_auto (&as->asig))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2458,6 +2458,7 @@ postgres_get_reserve_history (void *cls,
|
|||||||
rhc.rh = NULL;
|
rhc.rh = NULL;
|
||||||
rhc.rh_tail = NULL;
|
rhc.rh_tail = NULL;
|
||||||
rhc.status = GNUNET_OK;
|
rhc.status = GNUNET_OK;
|
||||||
|
qs = GNUNET_DB_STATUS_SUCCESS_NO_RESULTS; /* make static analysis happy */
|
||||||
for (unsigned int i=0;NULL != work[i].cb;i++)
|
for (unsigned int i=0;NULL != work[i].cb;i++)
|
||||||
{
|
{
|
||||||
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
||||||
|
Loading…
Reference in New Issue
Block a user