From: Julius Bünger Date: Thu, 28 Dec 2017 23:41:17 +0000 (+0100) Subject: rps: fix double call X-Git-Tag: gnunet-0.11.0rc0~67 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b36a7b8fb99473e15dacdbdd5431eafabb80f6e2;p=oweals%2Fgnunet.git rps: fix double call --- diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c index 124b82b72..bea3df233 100644 --- a/src/rps/gnunet-service-rps.c +++ b/src/rps/gnunet-service-rps.c @@ -1121,7 +1121,6 @@ handle_client_request_cancel (void *cls, (rep_cls->id != ntohl (msg->id)) ) rep_cls = rep_cls->next; GNUNET_assert (rep_cls->id == ntohl (msg->id)); - RPS_sampler_request_cancel (rep_cls->req_handle); destroy_reply_cls (rep_cls); GNUNET_SERVICE_client_continue (cli_ctx->client); }