msi: Remove superflous NULL check (Coverity).

This commit is contained in:
Marcus Meissner 2011-06-26 17:24:25 +02:00 committed by Alexandre Julliard
parent 59f8cfeb22
commit 90970651d3
1 changed files with 1 additions and 1 deletions

View File

@ -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;