msi: automation: Add missing operand for evaluation.
This commit is contained in:
parent
f850364efa
commit
39ffa7d16f
|
@ -764,7 +764,7 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
|
||||||
if (FAILED(hr)) return hr;
|
if (FAILED(hr)) return hr;
|
||||||
pid = V_I4(&varg0);
|
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,
|
ret = MsiSummaryInfoGetPropertyW(This->msiHandle, pid, &type, &value,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
Loading…
Reference in New Issue