summaryrefslogtreecommitdiff
path: root/src/consensus/gnunet-service-consensus.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-10 17:30:54 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-10 17:30:54 +0100
commit8939dc23ba994b2e077d06bd2c7a61c08919663f (patch)
tree5fafe3477507bce64f66ff941d1899a492a3c39b /src/consensus/gnunet-service-consensus.c
parentcc149d0c2fffb6baffa9ad30706cae120fa337a6 (diff)
fix memory leak
Diffstat (limited to 'src/consensus/gnunet-service-consensus.c')
-rw-r--r--src/consensus/gnunet-service-consensus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/consensus/gnunet-service-consensus.c b/src/consensus/gnunet-service-consensus.c
index ba84f64a2..7911db8b0 100644
--- a/src/consensus/gnunet-service-consensus.c
+++ b/src/consensus/gnunet-service-consensus.c
@@ -905,7 +905,7 @@ cmp_uint64_t (const void *pa, const void *pb)
* in the result set.
*
* @param cls closure
- * @param element a result element, only valid if status is GNUNET_SET_STATUS_OK
+ * @param element a result element, only valid if status is #GNUNET_SET_STATUS_OK
* @param current_size current set size
* @param status see enum GNUNET_SET_Status
*/
@@ -1022,6 +1022,7 @@ set_result_cb (void *cls,
"P%u: lower bound %llu\n",
session->local_peer_idx,
(long long) session->lower_bound);
+ GNUNET_free (copy);
}
return;
}