Module: wine Branch: master Commit: 39ffa7d16fd1306541c77cb4146fa3e886a3d6aa URL: http://source.winehq.org/git/wine.git/?a=commit;h=39ffa7d16fd1306541c77cb414...
Author: Misha Koshelev mk144210@bcm.edu Date: Fri Jun 1 20:05:57 2007 -0500
msi: automation: Add missing operand for evaluation.
---
dlls/msi/automation.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/automation.c b/dlls/msi/automation.c index 06e6434..2bef67d 100644 --- a/dlls/msi/automation.c +++ b/dlls/msi/automation.c @@ -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);