Commit cd2780e2 authored by Alexandre Julliard's avatar Alexandre Julliard

msi: Avoid accessing a freed object.

parent 868b5397
......@@ -202,8 +202,8 @@ static UINT ALTER_delete( struct tagMSIVIEW *view )
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
TRACE("%p\n", av );
msi_free( av );
av->table->ops->delete( av->table );
msi_free( av );
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