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
c0d7a25a
Commit
c0d7a25a
authored
Jul 19, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Jul 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence now noisy error messages caused by changes in the way we call
ipid_to_stubmanager. Move the error message to the one place it is needed.
parent
98c315c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
rpc.c
dlls/ole32/rpc.c
+1
-1
stubmanager.c
dlls/ole32/stubmanager.c
+1
-1
No files found.
dlls/ole32/rpc.c
View file @
c0d7a25a
...
...
@@ -460,7 +460,7 @@ static void __RPC_STUB dispatch_rpc(RPC_MESSAGE *msg)
if
(
!
apt
||
!
stub
)
{
if
(
apt
)
apartment_release
(
apt
);
/* ipid_to_apt_and_stubbuffer will already have logged the error */
ERR
(
"no apartment found for ipid %s
\n
"
,
debugstr_guid
(
&
ipid
));
return
RpcRaiseException
(
RPC_E_DISCONNECTED
);
}
...
...
dlls/ole32/stubmanager.c
View file @
c0d7a25a
...
...
@@ -340,7 +340,7 @@ HRESULT ipid_to_stub_manager(const IPID *ipid, APARTMENT **stub_apt, struct stub
*
stub_apt
=
apartment_findfromtid
(
ipid
->
Data2
);
if
(
!*
stub_apt
)
{
ERR
(
"Couldn't find apartment corresponding to TID 0x%04x
\n
"
,
ipid
->
Data2
);
TRACE
(
"Couldn't find apartment corresponding to TID 0x%04x
\n
"
,
ipid
->
Data2
);
return
RPC_E_INVALID_OBJECT
;
}
*
stubmgr_ret
=
get_stub_manager_from_ipid
(
*
stub_apt
,
ipid
);
...
...
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