Commit 90970651 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

msi: Remove superflous NULL check (Coverity).

parent 59f8cfeb
......@@ -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;
......
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