wbemprox: Also free data for tables that don't have a fill function (Valgrind).

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2017-03-24 15:49:20 +01:00 committed by Alexandre Julliard
parent 08603e565b
commit 66e3c97ca7
1 changed files with 1 additions and 0 deletions

View File

@ -334,6 +334,7 @@ void free_table( struct table *table )
TRACE("destroying %p\n", table);
heap_free( (WCHAR *)table->name );
free_columns( (struct column *)table->columns, table->num_cols );
heap_free( table->data );
list_remove( &table->entry );
heap_free( table );
}