diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-02-25 14:21:14 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-02-25 14:21:14 +0100 |
commit | 30b24448c8250b01eba8368f38c9ccdc2075f903 (patch) | |
tree | 98092d0378e68cb8ea623ed6eb31133c1e741b4f /src | |
parent | 47e8190e9da17adf581ea05c1ef253096887d973 (diff) |
do not NPE if encountering reserve_close for which we have no summary
Diffstat (limited to 'src')
-rw-r--r-- | src/auditor/taler-wire-auditor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/taler-wire-auditor.c b/src/auditor/taler-wire-auditor.c index d458f8044..51c1ba815 100644 --- a/src/auditor/taler-wire-auditor.c +++ b/src/auditor/taler-wire-auditor.c @@ -2006,7 +2006,7 @@ begin_transaction () &wa->out_wire_off); if (0 > wa->qsx) { - GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsx); + GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == wa->qsx); global_ret = 1; GNUNET_SCHEDULER_shutdown (); return; |