From 1589bd83268b5c01ee6e2895f6b7a8c82f55e390 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 3 Oct 2014 14:45:18 +0200 Subject: [PATCH] huffman: remove wrong htsmsg_destroy() call (coverity) --- src/huffman.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/huffman.c b/src/huffman.c index 1a72c8e9..ac3a322f 100644 --- a/src/huffman.c +++ b/src/huffman.c @@ -62,7 +62,6 @@ huffman_node_t *huffman_tree_build ( htsmsg_t *m ) if (!node->b1) node->b1 = calloc(1, sizeof(huffman_node_t)); node = node->b1; } else { - htsmsg_destroy(m); huffman_tree_destroy(root); return NULL; }