wbemprox: Store a copy of the table name.
This commit is contained in:
parent
94f3eaacf2
commit
b73bbf5973
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue