From edefc4c42202fd10a48ea9037e3fe04e5ead840d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Julius=20B=C3=BCnger?= Date: Tue, 3 Jul 2018 17:27:10 +0200 Subject: [PATCH] fix rps profiler: mark cancelled task as done --- src/rps/gnunet-rps-profiler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rps/gnunet-rps-profiler.c b/src/rps/gnunet-rps-profiler.c index 16f23e86c..54dc7d65e 100644 --- a/src/rps/gnunet-rps-profiler.c +++ b/src/rps/gnunet-rps-profiler.c @@ -888,6 +888,7 @@ shutdown_op (void *cls) if (NULL != post_test_task) { GNUNET_SCHEDULER_cancel (post_test_task); + post_test_task = NULL; } if (NULL != churn_task) { -- 2.25.1