aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rps/gnunet-service-rps.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c
index fe5db5e6f..4782a69df 100644
--- a/src/rps/gnunet-service-rps.c
+++ b/src/rps/gnunet-service-rps.c
@@ -1542,6 +1542,10 @@ cleanup_channel (void *cls,
1542 RPS_sampler_reinitialise_by_value (peer); 1542 RPS_sampler_reinitialise_by_value (peer);
1543 1543
1544 peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer); 1544 peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
1545
1546 if (NULL == peer_ctx) /* It could have been removed by shutdown_task */
1547 return;
1548
1545 /* Somwewhat {ab,re}use the iterator function */ 1549 /* Somwewhat {ab,re}use the iterator function */
1546 /* Cast to void is ok, because it's used as void in peer_remove_cb */ 1550 /* Cast to void is ok, because it's used as void in peer_remove_cb */
1547 (void) peer_remove_cb ((void *) channel, peer, peer_ctx); 1551 (void) peer_remove_cb ((void *) channel, peer, peer_ctx);