Commit b774ffe1 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Free the ordering information.

parent 650b2733
......@@ -1659,9 +1659,15 @@ static UINT TABLE_delete( struct tagMSIVIEW *view )
TRACE("%p\n", view );
tv->table = NULL;
tv->columns = NULL;
if (tv->order)
{
msi_free( tv->order->reorder );
msi_free( tv->order );
tv->order = NULL;
}
msi_free( tv );
return ERROR_SUCCESS;
......
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