msi: Remove superflous NULL check (Coverity).
This commit is contained in:
parent
59f8cfeb22
commit
90970651d3
|
@ -283,7 +283,7 @@ static LPWSTR msi_dialog_get_style( LPCWSTR p, LPCWSTR *rest )
|
|||
return NULL;
|
||||
}
|
||||
|
||||
if (!p || !q)
|
||||
if (!q)
|
||||
return NULL;
|
||||
|
||||
*rest = ++q;
|
||||
|
|
Loading…
Reference in New Issue