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
300536d8
Commit
300536d8
authored
Aug 02, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Aug 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a missing STUBLESS_INITOUT case.
parent
53391a34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+2
-7
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
300536d8
...
...
@@ -1258,6 +1258,8 @@ static LONG_PTR *stub_do_old_args(MIDL_STUB_MESSAGE *pStubMsg,
if
(
pParam
->
param_direction
==
RPC_FC_IN_PARAM_BASETYPE
)
call_freer
(
pStubMsg
,
pArg
,
pTypeFormat
);
break
;
case
STUBLESS_INITOUT
:
break
;
case
STUBLESS_UNMARSHAL
:
if
(
pParam
->
param_direction
==
RPC_FC_IN_PARAM_BASETYPE
)
call_unmarshaller
(
pStubMsg
,
&
pArg
,
pTypeFormat
,
0
);
...
...
@@ -1512,13 +1514,6 @@ LONG WINAPI NdrStubCall2(
if
(
pThis
)
*
(
void
**
)
args
=
((
CStdStubBuffer
*
)
pThis
)
->
pvServerObject
;
/* order of phases:
* 1. STUBLESS_UNMARHSAL - unmarshal [in] params from buffer
* 2. STUBLESS_CALLSERVER - send/receive buffer
* 3. STUBLESS_CALCSIZE - get [out] buffer size
* 4. STUBLESS_GETBUFFER - allocate [out] buffer
* 5. STUBLESS_MARHSAL - marshal [out] params to buffer
*/
for
(
phase
=
STUBLESS_UNMARSHAL
;
phase
<=
STUBLESS_FREE
;
phase
++
)
{
TRACE
(
"phase = %d
\n
"
,
phase
);
...
...
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