Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ad24c559
Commit
ad24c559
authored
Oct 21, 2003
by
Gregory M. Turner
Committed by
Alexandre Julliard
Oct 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Remove an erroneous check in NdrSendReceive.
- Change fixmes.
parent
ea469ad7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
ndr_midl.c
dlls/rpcrt4/ndr_midl.c
+2
-5
No files found.
dlls/rpcrt4/ndr_midl.c
View file @
ad24c559
...
@@ -266,16 +266,13 @@ unsigned char *WINAPI NdrSendReceive( MIDL_STUB_MESSAGE *stubmsg, unsigned char
...
@@ -266,16 +266,13 @@ unsigned char *WINAPI NdrSendReceive( MIDL_STUB_MESSAGE *stubmsg, unsigned char
ERR
(
"RPC Message not present in stub message. No action taken.
\n
"
);
ERR
(
"RPC Message not present in stub message. No action taken.
\n
"
);
return
NULL
;
return
NULL
;
}
}
if
(
stubmsg
->
RpcMsg
->
Buffer
!=
buffer
)
{
ERR
(
"Ambiguous buffer doesn't match rpc message buffer. No action taken.
\n
"
);
return
NULL
;
}
/*
not sure where MS does this; for now I'll stick it here
*/
/*
FIXME: Seems wrong. Where should this really come from, and when?
*/
stubmsg
->
RpcMsg
->
DataRepresentation
=
NDR_LOCAL_DATA_REPRESENTATION
;
stubmsg
->
RpcMsg
->
DataRepresentation
=
NDR_LOCAL_DATA_REPRESENTATION
;
if
(
I_RpcSendReceive
(
stubmsg
->
RpcMsg
)
!=
RPC_S_OK
)
{
if
(
I_RpcSendReceive
(
stubmsg
->
RpcMsg
)
!=
RPC_S_OK
)
{
WARN
(
"I_RpcSendReceive did not return success.
\n
"
);
WARN
(
"I_RpcSendReceive did not return success.
\n
"
);
/* FIXME: raise exception? */
}
}
/* FIXME: is this the right return value? */
/* FIXME: is this the right return value? */
...
...
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