mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[SMSS] Initial SmpInit() call initializes the *first handle* (index 0) in the array.
This commit is contained in:
parent
5cfb71baf8
commit
cb8c8693e0
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ _main(IN INT argc,
|
|||
_SEH2_TRY
|
||||
{
|
||||
/* Initialize SMSS */
|
||||
Status = SmpInit(&InitialCommand, Handles);
|
||||
Status = SmpInit(&InitialCommand, &Handles[0]);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("SMSS: SmpInit return failure - Status == %x\n", Status);
|
||||
|
|
Loading…
Reference in a new issue