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
d8e35c51
Commit
d8e35c51
authored
Jul 05, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Use nameless union/structs.
parent
23daba9a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
13 deletions
+10
-13
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+6
-7
ndr_ole.c
dlls/rpcrt4/ndr_ole.c
+4
-6
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
d8e35c51
...
...
@@ -33,7 +33,6 @@
#include <string.h>
#include <limits.h>
#define NONAMELESSUNION
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
...
...
@@ -4617,15 +4616,15 @@ RPC_STATUS RPC_ENTRY NdrGetUserMarshalInfo(ULONG *flags, ULONG level, NDR_USER_M
if
(
level
!=
1
)
return
RPC_S_INVALID_ARG
;
memset
(
&
umi
->
u1
.
Level1
,
0
,
sizeof
(
umi
->
u1
.
Level1
));
memset
(
&
umi
->
Level1
,
0
,
sizeof
(
umi
->
Level1
));
umi
->
InformationLevel
=
level
;
if
(
umcb
->
Signature
!=
USER_MARSHAL_CB_SIGNATURE
)
return
RPC_S_INVALID_ARG
;
umi
->
u1
.
Level1
.
pfnAllocate
=
umcb
->
pStubMsg
->
pfnAllocate
;
umi
->
u1
.
Level1
.
pfnFree
=
umcb
->
pStubMsg
->
pfnFree
;
umi
->
u1
.
Level1
.
pRpcChannelBuffer
=
umcb
->
pStubMsg
->
pRpcChannelBuffer
;
umi
->
Level1
.
pfnAllocate
=
umcb
->
pStubMsg
->
pfnAllocate
;
umi
->
Level1
.
pfnFree
=
umcb
->
pStubMsg
->
pfnFree
;
umi
->
Level1
.
pRpcChannelBuffer
=
umcb
->
pStubMsg
->
pRpcChannelBuffer
;
switch
(
umcb
->
CBType
)
{
...
...
@@ -4641,8 +4640,8 @@ RPC_STATUS RPC_ENTRY NdrGetUserMarshalInfo(ULONG *flags, ULONG level, NDR_USER_M
umcb
->
pStubMsg
->
Buffer
>
buffer_end
)
return
RPC_X_INVALID_BUFFER
;
umi
->
u1
.
Level1
.
Buffer
=
umcb
->
pStubMsg
->
Buffer
;
umi
->
u1
.
Level1
.
BufferSize
=
buffer_end
-
umcb
->
pStubMsg
->
Buffer
;
umi
->
Level1
.
Buffer
=
umcb
->
pStubMsg
->
Buffer
;
umi
->
Level1
.
BufferSize
=
buffer_end
-
umcb
->
pStubMsg
->
Buffer
;
break
;
}
case
USER_MARSHAL_CB_BUFFER_SIZE
:
...
...
dlls/rpcrt4/ndr_ole.c
View file @
d8e35c51
...
...
@@ -26,8 +26,6 @@
#include <string.h>
#define COBJMACROS
#define NONAMELESSUNION
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
...
...
@@ -139,13 +137,13 @@ static HRESULT WINAPI RpcStream_Seek(LPSTREAM iface,
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
switch
(
origin
)
{
case
STREAM_SEEK_SET
:
This
->
pos
=
move
.
u
.
LowPart
;
This
->
pos
=
move
.
LowPart
;
break
;
case
STREAM_SEEK_CUR
:
This
->
pos
=
This
->
pos
+
move
.
u
.
LowPart
;
This
->
pos
=
This
->
pos
+
move
.
LowPart
;
break
;
case
STREAM_SEEK_END
:
This
->
pos
=
*
This
->
size
+
move
.
u
.
LowPart
;
This
->
pos
=
*
This
->
size
+
move
.
LowPart
;
break
;
default:
return
STG_E_INVALIDFUNCTION
;
...
...
@@ -161,7 +159,7 @@ static HRESULT WINAPI RpcStream_SetSize(LPSTREAM iface,
ULARGE_INTEGER
newSize
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
*
This
->
size
=
newSize
.
u
.
LowPart
;
*
This
->
size
=
newSize
.
LowPart
;
return
S_OK
;
}
...
...
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