From: LRN Date: Wed, 13 Mar 2013 17:49:17 +0000 (+0000) Subject: Correctly destroy OS_Process (cosmetic fix) X-Git-Tag: initial-import-from-subversion-38251~9672 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3ceae682287492ecc768aea5c4c463216a35774d;p=oweals%2Fgnunet.git Correctly destroy OS_Process (cosmetic fix) --- 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); }