diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-10-06 22:04:51 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-10-06 22:04:51 +0200 |
commit | d86a6615cc60ba9e9d1a70146d761160564f404a (patch) | |
tree | 89dc16c48ce5b3c189349fe2aa5511daf0134c09 /src/auditor | |
parent | 332a37292c1db7261ebc6bb6fbb9ceacd7cc3220 (diff) |
really carefully check strtoll() return value before casting to uint64_t
Diffstat (limited to 'src/auditor')
-rw-r--r-- | src/auditor/taler-auditor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c index bf8bd97b5..f9f03b0f7 100644 --- a/src/auditor/taler-auditor.c +++ b/src/auditor/taler-auditor.c @@ -1941,6 +1941,7 @@ wire_transfer_information_cb (void *cls, return; } + GNUNET_assert (NULL != dki); /* mostly to help static analysis */ /* Check transaction history to see if it supports aggregate valuation */ check_transaction_history (coin_pub, |