diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-08-22 17:41:30 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-08-22 17:41:30 +0200 |
commit | 35133c1e67f67fe53329cb935824aed00c364a3f (patch) | |
tree | 3d0163f27e8196583b2be44576710aefa69e69dd | |
parent | 1cc87bf9fe868b10ba7ddc93a9bbac7407107b6a (diff) | |
download | exchange-35133c1e67f67fe53329cb935824aed00c364a3f.tar.gz exchange-35133c1e67f67fe53329cb935824aed00c364a3f.tar.bz2 exchange-35133c1e67f67fe53329cb935824aed00c364a3f.zip |
-fix segv
-rw-r--r-- | src/bank-lib/fakebank.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c index 6eadb618..f8c704f6 100644 --- a/src/bank-lib/fakebank.c +++ b/src/bank-lib/fakebank.c @@ -2094,7 +2094,7 @@ handle_credit_history (struct TALER_FAKEBANK_Handle *h, uint64_t dir; bool skip = true; - overflow = (t->row_id != ha.start_idx); + overflow = ( (NULL != t) && (t->row_id != ha.start_idx) ); dir = (0 > ha.delta) ? (h->ram_limit - 1) : 1; /* If account does not match, linear scan for first matching account. */ |