From b8cde7b7e18c8016262c552958319dd29a488ab1 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Tue, 16 Apr 2013 17:49:30 +0900 Subject: [PATCH] (concord_name_table_grow): Release old `table->data'. --- name.c | 1 + 1 file changed, 1 insertion(+) diff --git a/name.c b/name.c index 90cde63..da8b7d5 100644 --- a/name.c +++ b/name.c @@ -194,6 +194,7 @@ concord_name_table_grow (CONCORD_NAME_TABLE* table) } } } + free (table->data); table->size = new_table->size; table->data = new_table->data; free (new_table); -- 1.7.10.4