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
bc1b56ad
Commit
bc1b56ad
authored
Apr 16, 2019
by
Louis Lenders
Committed by
Alexandre Julliard
Apr 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Quiet two noisy fixme`s.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6c486058
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+8
-2
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
bc1b56ad
...
...
@@ -7263,7 +7263,10 @@ NDR_SCONTEXT WINAPI NdrServerContextNewUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
*/
void
WINAPI
NdrCorrelationInitialize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
void
*
pMemory
,
ULONG
CacheSize
,
ULONG
Flags
)
{
FIXME
(
"(%p, %p, %d, 0x%x): semi-stub
\n
"
,
pStubMsg
,
pMemory
,
CacheSize
,
Flags
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p, %p, %d, 0x%x): semi-stub
\n
"
,
pStubMsg
,
pMemory
,
CacheSize
,
Flags
);
if
(
pStubMsg
->
CorrDespIncrement
==
0
)
pStubMsg
->
CorrDespIncrement
=
2
;
/* size of the normal (non-range) /robust payload */
...
...
@@ -7301,5 +7304,8 @@ void WINAPI NdrCorrelationPass(PMIDL_STUB_MESSAGE pStubMsg)
*/
void
WINAPI
NdrCorrelationFree
(
PMIDL_STUB_MESSAGE
pStubMsg
)
{
FIXME
(
"(%p): stub
\n
"
,
pStubMsg
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p): stub
\n
"
,
pStubMsg
);
}
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