Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5ef5a792
Commit
5ef5a792
authored
Feb 04, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Silence noisy ERRs.
Based on patch by Puetz Kevin. Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
282678cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
marshal.c
dlls/ole32/marshal.c
+2
-2
No files found.
dlls/ole32/marshal.c
View file @
5ef5a792
...
...
@@ -165,7 +165,7 @@ HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnkno
ERR
(
"Failed to create an IRpcStubBuffer from IPSFactory for %s with error 0x%08x
\n
"
,
debugstr_guid
(
riid
),
hr
);
}
else
{
ERR
(
"couldn't get IPSFactory buffer for interface %s
\n
"
,
debugstr_guid
(
riid
));
WARN
(
"couldn't get IPSFactory buffer for interface %s
\n
"
,
debugstr_guid
(
riid
));
hr
=
E_NOINTERFACE
;
}
...
...
@@ -303,7 +303,7 @@ static HRESULT WINAPI ClientIdentity_QueryMultipleInterfaces(IMultiQI *iface, UL
nonlocal_mqis
,
iids
,
&
qiresults
);
IRemUnknown_Release
(
remunk
);
if
(
FAILED
(
hr
))
ERR
(
"IRemUnknown_RemQueryInterface failed with error 0x%08x
\n
"
,
hr
);
WARN
(
"IRemUnknown_RemQueryInterface failed with error 0x%08x
\n
"
,
hr
);
}
/* IRemUnknown_RemQueryInterface can return S_FALSE if only some of
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment