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
70c34ccc
Commit
70c34ccc
authored
Jun 09, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: We always pass in an IRpcChannelBuffer to IRpcStubBuffer::Invoke now,
so remove the case for it being NULL.
parent
c60c28cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
17 deletions
+3
-17
tmarshal.c
dlls/oleaut32/tmarshal.c
+3
-17
No files found.
dlls/oleaut32/tmarshal.c
View file @
70c34ccc
...
@@ -1820,23 +1820,9 @@ TMStubImpl_Invoke(
...
@@ -1820,23 +1820,9 @@ TMStubImpl_Invoke(
HeapFree
(
GetProcessHeap
(),
0
,
args
);
HeapFree
(
GetProcessHeap
(),
0
,
args
);
xmsg
->
cbBuffer
=
buf
.
curoff
;
xmsg
->
cbBuffer
=
buf
.
curoff
;
if
(
rpcchanbuf
)
hres
=
IRpcChannelBuffer_GetBuffer
(
rpcchanbuf
,
xmsg
,
&
This
->
iid
);
{
if
(
hres
!=
S_OK
)
hres
=
IRpcChannelBuffer_GetBuffer
(
rpcchanbuf
,
xmsg
,
&
This
->
iid
);
ERR
(
"IRpcChannelBuffer_GetBuffer failed with error 0x%08lx
\n
"
,
hres
);
if
(
hres
!=
S_OK
)
ERR
(
"IRpcChannelBuffer_GetBuffer failed with error 0x%08lx
\n
"
,
hres
);
}
else
{
/* FIXME: remove this case when we start sending an IRpcChannelBuffer
* object with builtin OLE */
RPC_STATUS
status
=
I_RpcGetBuffer
((
RPC_MESSAGE
*
)
xmsg
);
if
(
status
!=
RPC_S_OK
)
{
ERR
(
"I_RpcGetBuffer failed with error %ld
\n
"
,
status
);
hres
=
E_FAIL
;
}
}
if
(
hres
==
S_OK
)
if
(
hres
==
S_OK
)
memcpy
(
xmsg
->
Buffer
,
buf
.
base
,
buf
.
curoff
);
memcpy
(
xmsg
->
Buffer
,
buf
.
base
,
buf
.
curoff
);
...
...
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