summaryrefslogtreecommitdiff
path: root/src/auditor/taler-auditor.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-25 14:12:28 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-25 14:12:28 +0100
commit548a0cc09d84c5652b5e5f0fdfb455842f6edc62 (patch)
tree2f6f074c6e03f1a41e251669f5e53fc6b1d22815 /src/auditor/taler-auditor.c
parent227467c394911fd20f69777cde799a57b0903407 (diff)
downloadexchange-548a0cc09d84c5652b5e5f0fdfb455842f6edc62.tar.gz
exchange-548a0cc09d84c5652b5e5f0fdfb455842f6edc62.tar.bz2
exchange-548a0cc09d84c5652b5e5f0fdfb455842f6edc62.zip
do not NPE if encountering reserve_close for which we have no summary
Diffstat (limited to 'src/auditor/taler-auditor.c')
-rw-r--r--src/auditor/taler-auditor.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c
index 2827f6799..1c6f82c86 100644
--- a/src/auditor/taler-auditor.c
+++ b/src/auditor/taler-auditor.c
@@ -1083,6 +1083,8 @@ handle_reserve_in (void *cls,
TALER_amount_add (&rs->total_in,
&rs->total_in,
credit));
+ if (NULL == rs->sender_account)
+ rs->sender_account = GNUNET_strdup (sender_account_details);
}
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Additional incoming wire transfer for reserve `%s' of %s\n",
@@ -1590,8 +1592,15 @@ handle_reserve_closed (void *cls,
1);
}
}
- if (0 != strcmp (rs->sender_account,
- receiver_account))
+ if (NULL == rs->sender_account)
+ {
+ GNUNET_break (GNUNET_NO == rs->had_ri);
+ report_row_inconsistency ("reserves_close",
+ rowid,
+ "target account not verified, auditor does not know reserve");
+ }
+ else if (0 != strcmp (rs->sender_account,
+ receiver_account))
{
report_row_inconsistency ("reserves_close",
rowid,