mirror of
https://github.com/reactos/wine.git
synced 2025-02-28 00:39:06 +00:00
msi: Remove a redundant NULL check before free (Smatch).
This commit is contained in:
parent
958eff8e94
commit
78ebd8f7cf
@ -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;
|
||||
}
|
||||
msi_free(wv->order_info);
|
||||
wv->order_info = NULL;
|
||||
|
||||
msiobj_release( &wv->db->hdr );
|
||||
msi_free( wv );
|
||||
|
Loading…
x
Reference in New Issue
Block a user