msi: Remove a redundant NULL check before free (Smatch).

This commit is contained in:
Michael Stefaniuc 2011-10-11 00:03:35 +02:00 committed by Alexandre Julliard
parent 958eff8e94
commit 78ebd8f7cf
1 changed files with 2 additions and 5 deletions

View File

@ -919,11 +919,8 @@ static UINT WHERE_delete( struct tagMSIVIEW *view )
free_reorder(wv);
if (wv->order_info)
{
msi_free(wv->order_info);
wv->order_info = NULL;
}
msiobj_release( &wv->db->hdr );
msi_free( wv );