From: Pavel Charvat Date: Fri, 14 Sep 2007 07:21:01 +0000 (+0200) Subject: fixed a memory leak X-Git-Tag: holmes-import~506^2~13^2~7^2 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=bced8a6555af8e0c34d8eb852a2b5ffa33f9006a;p=libucw.git fixed a memory leak --- diff --git a/lib/sorter/govern.c b/lib/sorter/govern.c index 7231a5b7..43b16688 100644 --- a/lib/sorter/govern.c +++ b/lib/sorter/govern.c @@ -436,4 +436,5 @@ sorter_run(struct sort_context *ctx) SORT_XTRACE(2, "Final timings: %.3fs external sorting, %.3fs presorting, %.3fs internal sorting", ctx->total_ext_time/1000., ctx->total_pre_time/1000., ctx->total_int_time/1000.); ctx->out_fb = sbuck_read(bout); + mp_delete(ctx->pool); }