Commit 66e3c97c authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

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

parent 08603e56
...@@ -334,6 +334,7 @@ void free_table( struct table *table ) ...@@ -334,6 +334,7 @@ void free_table( struct table *table )
TRACE("destroying %p\n", table); TRACE("destroying %p\n", table);
heap_free( (WCHAR *)table->name ); heap_free( (WCHAR *)table->name );
free_columns( (struct column *)table->columns, table->num_cols ); free_columns( (struct column *)table->columns, table->num_cols );
heap_free( table->data );
list_remove( &table->entry ); list_remove( &table->entry );
heap_free( table ); heap_free( table );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment