mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Don't return uninitialized variable
svn path=/trunk/; revision=12335
This commit is contained in:
parent
af8cd05c99
commit
0dedd084f1
1 changed files with 2 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: process.c,v 1.38 2004/12/23 18:02:12 gvg Exp $
|
||||
/* $Id: process.c,v 1.39 2004/12/25 22:58:59 gvg Exp $
|
||||
*
|
||||
* reactos/subsys/csrss/api/process.c
|
||||
*
|
||||
|
@ -260,8 +260,6 @@ CSR_API(CsrCreateProcess)
|
|||
|
||||
CSR_API(CsrTerminateProcess)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
||||
Reply->Header.MessageSize = sizeof(CSRSS_API_REPLY) - LPC_MESSAGE_BASE_SIZE;
|
||||
Reply->Header.DataSize = sizeof(CSRSS_API_REPLY);
|
||||
|
||||
|
@ -271,7 +269,7 @@ CSR_API(CsrTerminateProcess)
|
|||
}
|
||||
|
||||
Reply->Status = STATUS_SUCCESS;
|
||||
return Status;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
CSR_API(CsrConnectProcess)
|
||||
|
|
Loading…
Reference in a new issue