wbemprox: Store a copy of the table name.

oldstable
Hans Leidekker 2012-10-04 15:36:14 +02:00 committed by Alexandre Julliard
parent 94f3eaacf2
commit b73bbf5973
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ struct table *create_table( const WCHAR *name, UINT num_cols, const struct colum
struct table *table;
if (!(table = heap_alloc( sizeof(*table) ))) return NULL;
table->name = name;
table->name = heap_strdupW( name );
table->num_cols = num_cols;
table->columns = columns;
table->num_rows = num_rows;