mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
[NTOS] Addendum to d8cb37bf
: return the correct Status from NtAllocateUuids().
This commit is contained in:
parent
03873aeef3
commit
f4597b5540
1 changed files with 3 additions and 1 deletions
|
@ -398,6 +398,8 @@ NtAllocateUuids(OUT PULARGE_INTEGER Time,
|
|||
RtlCopyMemory(Seed,
|
||||
UuidSeed,
|
||||
SEED_BUFFER_SIZE);
|
||||
|
||||
Status = STATUS_SUCCESS;
|
||||
}
|
||||
_SEH2_EXCEPT(ExSystemExceptionFilter())
|
||||
{
|
||||
|
@ -405,7 +407,7 @@ NtAllocateUuids(OUT PULARGE_INTEGER Time,
|
|||
}
|
||||
_SEH2_END;
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue