Misha Koshelev : msi: automation: Remove duplicate error messages on unknown dispid.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jun 4 08:14:32 CDT 2007


Module: wine
Branch: master
Commit: f850364efac585c310933e2c0aaef60b921d6cb2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f850364efac585c310933e2c0aaef60b921d6cb2

Author: Misha Koshelev <mk144210 at bcm.edu>
Date:   Fri Jun  1 20:05:40 2007 -0500

msi: automation: Remove duplicate error messages on unknown dispid.

DISP_E_MEMBERNOTFOUND FIXME is already handled in AutomationObject_Invoke.

---

 dlls/msi/automation.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/automation.c b/dlls/msi/automation.c
index 6b1f6c2..06e6434 100644
--- a/dlls/msi/automation.c
+++ b/dlls/msi/automation.c
@@ -830,7 +830,6 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
             break;
 
         default:
-            ERR("Member not found: %d\n", dispIdMember);
             return DISP_E_MEMBERNOTFOUND;
     }
 
@@ -1849,7 +1848,6 @@ static HRESULT WINAPI InstallerImpl_Invoke(
             break;
 
          default:
-            ERR("Member not found: %d\n", dispIdMember);
             return DISP_E_MEMBERNOTFOUND;
     }
 




More information about the wine-cvs mailing list