rpcss: Zero the memory of several variables before writing them to the pipe to silence Valgrind warnings.

This commit is contained in:
Rob Shearman 2007-12-27 10:01:09 +00:00 committed by Alexandre Julliard
parent fd711c57df
commit 63a74c7dd4
1 changed files with 2 additions and 0 deletions

View File

@ -110,6 +110,7 @@ static void RPCSS_ServerProcessRESOLVEEPMessage(PRPCSS_NP_MESSAGE pMsg,
static void RPCSS_ServerProcessMessage(PRPCSS_NP_MESSAGE pMsg, PRPCSS_NP_REPLY pReply, char *vardata)
{
WINE_TRACE("\n");
ZeroMemory(pReply, sizeof(*pReply));
switch (pMsg->message_type) {
case RPCSS_NP_MESSAGE_TYPEID_RANMSG:
RPCSS_ServerProcessRANMessage(pMsg, pReply);
@ -436,6 +437,7 @@ BOOL RPCSS_BecomePipeServer(void)
*/
if ((client_handle = RPCSS_NPConnect()) != INVALID_HANDLE_VALUE) {
ZeroMemory(&msg, sizeof(msg));
msg.message_type = RPCSS_NP_MESSAGE_TYPEID_RANMSG;
msg.message.ranmsg.timeout = 1000;
msg.vardata_payload_size = 0;