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
1c632ffe
Commit
1c632ffe
authored
Jun 10, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Fix handling of complex types of return values on the server side.
parent
4b12e9c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+3
-4
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
1c632ffe
...
...
@@ -1078,10 +1078,6 @@ static LONG_PTR *stub_do_args(MIDL_STUB_MESSAGE *pStubMsg,
TRACE
(
"
\t
base type: 0x%02x
\n
"
,
*
pTypeFormat
);
/* make a note of the address of the return value parameter for later */
if
(
pParam
->
param_attributes
.
IsReturn
)
retval_ptr
=
(
LONG_PTR
*
)
pArg
;
switch
(
phase
)
{
case
STUBLESS_MARSHAL
:
...
...
@@ -1222,6 +1218,9 @@ static LONG_PTR *stub_do_args(MIDL_STUB_MESSAGE *pStubMsg,
current_offset
+=
sizeof
(
NDR_PARAM_OIF_OTHER
);
}
TRACE
(
"
\t
memory addr (after): %p -> %p
\n
"
,
pArg
,
*
(
unsigned
char
**
)
pArg
);
/* make a note of the address of the return value parameter for later */
if
(
pParam
->
param_attributes
.
IsReturn
)
retval_ptr
=
(
LONG_PTR
*
)
pArg
;
}
return
retval_ptr
;
...
...
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