From 4a8d186bbcadc65d7f3c944c971b22d45fc06662 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Fri, 25 Jul 2014 23:23:26 +0200 Subject: [PATCH] winebuild: Remove unused empty_name_table. --- tools/winebuild/import.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c index 6bafd86c27a..3ad5cabe5e9 100644 --- a/tools/winebuild/import.c +++ b/tools/winebuild/import.c @@ -115,15 +115,6 @@ static inline void remove_name( struct name_table *table, unsigned int idx ) table->count--; } -/* make a name table empty */ -static inline void empty_name_table( struct name_table *table ) -{ - unsigned int i; - - for (i = 0; i < table->count; i++) free( table->names[i] ); - table->count = 0; -} - /* locate a name in a (sorted) list */ static inline const char *find_name( const char *name, const struct name_table *table ) { -- 2.11.4.GIT