aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxrs <xrs@mail36.net>2018-06-26 12:30:46 +0200
committerxrs <xrs@mail36.net>2018-06-26 12:30:46 +0200
commit76bdf9756d9957386d5c3df7f8309696528a46e7 (patch)
tree60b85e88fcd5b6487bce556e46cbf1e413aafbc2 /src
parente54f88a363b8560f83b13875c6e450b5393b0a7b (diff)
downloadgnunet-76bdf9756d9957386d5c3df7f8309696528a46e7.tar.gz
gnunet-76bdf9756d9957386d5c3df7f8309696528a46e7.zip
fix codesonar finding: add GNUnet_free
Diffstat (limited to 'src')
-rw-r--r--src/rps/gnunet-service-rps.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c
index 1b9681663..06adec8b5 100644
--- a/src/rps/gnunet-service-rps.c
+++ b/src/rps/gnunet-service-rps.c
@@ -4172,6 +4172,7 @@ shutdown_task (void *cls)
4172 { 4172 {
4173 tmp_att_peer = att_peers_head; 4173 tmp_att_peer = att_peers_head;
4174 GNUNET_CONTAINER_DLL_remove (att_peers_head, att_peers_tail, tmp_att_peer); 4174 GNUNET_CONTAINER_DLL_remove (att_peers_head, att_peers_tail, tmp_att_peer);
4175 GNUNET_free (tmp_att_peer);
4175 } 4176 }
4176 #endif /* ENABLE_MALICIOUS */ 4177 #endif /* ENABLE_MALICIOUS */
4177} 4178}