From 3ceae682287492ecc768aea5c4c463216a35774d Mon Sep 17 00:00:00 2001 From: LRN Date: Wed, 13 Mar 2013 17:49:17 +0000 Subject: [PATCH] Correctly destroy OS_Process (cosmetic fix) --- src/arm/arm_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arm/arm_api.c b/src/arm/arm_api.c index fd49a18a5..aee9afb24 100644 --- a/src/arm/arm_api.c +++ b/src/arm/arm_api.c @@ -408,7 +408,7 @@ arm_service_report (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) } if (pos->callback != NULL) pos->callback (pos->cls, GNUNET_ARM_PROCESS_STARTING); - GNUNET_free (proc); + GNUNET_OS_process_destroy (proc); GNUNET_free (pos); } -- 2.25.1