diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-09-05 03:52:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-09-05 03:52:26 +0200 |
commit | e5cf6039632584ebf70073c1cf4ab5e655de0e90 (patch) | |
tree | 0bf729219066771f77ca47e1c7210face4de0a6d /src/auditor | |
parent | da18859edc49aafbf1c35ccaf7e1ccfe0b9ee4cb (diff) |
fix taler-wire-auditor crash
Diffstat (limited to 'src/auditor')
-rw-r--r-- | src/auditor/taler-wire-auditor.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/auditor/taler-wire-auditor.c b/src/auditor/taler-wire-auditor.c index 265effdab..c53527f16 100644 --- a/src/auditor/taler-wire-auditor.c +++ b/src/auditor/taler-wire-auditor.c @@ -769,7 +769,7 @@ wire_out_cb (void *cls, GNUNET_CRYPTO_hash (wtid, sizeof (struct TALER_WireTransferIdentifierRawP), &key); - roi = GNUNET_CONTAINER_multihashmap_get (in_map, + roi = GNUNET_CONTAINER_multihashmap_get (out_map, &key); if (NULL == roi) { @@ -885,10 +885,6 @@ wire_out_cb (void *cls, } cleanup: GNUNET_assert (GNUNET_OK == - GNUNET_CONTAINER_multihashmap_remove (out_map, - &key, - roi)); - GNUNET_assert (GNUNET_OK == free_roi (NULL, &key, roi)); |