[PATCH] mshtml: removed duplicate const (Coverity)

Marcus Meissner meissner at suse.de
Sun Mar 13 23:28:42 CDT 2011


Hi,

Coverity considers this a parsing error, as
REFIID is defined to "const IID*" which turns
this into "const const IID*".  CID 1794

Ciao, Marcus
---
 dlls/mshtml/tests/activex.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/tests/activex.c b/dlls/mshtml/tests/activex.c
index 241342b..486acce 100644
--- a/dlls/mshtml/tests/activex.c
+++ b/dlls/mshtml/tests/activex.c
@@ -101,7 +101,7 @@ static const char object_ax_str[] =
     "</object>"
     "</body></html>";
 
-static const REFIID pluginhost_iids[] = {
+static REFIID pluginhost_iids[] = {
     &IID_IOleClientSite,
     &IID_IAdviseSink,
     &IID_IAdviseSinkEx,
-- 
1.7.1



More information about the wine-patches mailing list