msi: automation: Add missing operand for evaluation.

This commit is contained in:
Misha Koshelev 2007-06-01 20:05:57 -05:00 committed by Alexandre Julliard
parent f850364efa
commit 39ffa7d16f
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
if (FAILED(hr)) return hr;
pid = V_I4(&varg0);
if (pid == PID_CODEPAGE || (pid >= PID_PAGECOUNT && pid <= PID_CHARCOUNT) || PID_SECURITY)
if (pid == PID_CODEPAGE || (pid >= PID_PAGECOUNT && pid <= PID_CHARCOUNT) || pid == PID_SECURITY)
{
ret = MsiSummaryInfoGetPropertyW(This->msiHandle, pid, &type, &value,
NULL, NULL, NULL);