mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[NTOS]: Minor fixes:
- Use NULL instead of 'zero' for setting a handle / pointer to NULL; - Don't hardcode an array size; fix a comment; - Use ExFreePoolWithTag(); - Whitespace fix. svn path=/trunk/; revision=75128
This commit is contained in:
parent
d19f4a3169
commit
f43b456462
3 changed files with 5 additions and 5 deletions
|
@ -352,7 +352,7 @@ ObpFreeObjectNameBuffer(IN PUNICODE_STRING Name)
|
||||||
if (Name->MaximumLength != OBP_NAME_LOOKASIDE_MAX_SIZE)
|
if (Name->MaximumLength != OBP_NAME_LOOKASIDE_MAX_SIZE)
|
||||||
{
|
{
|
||||||
/* Free it from the pool */
|
/* Free it from the pool */
|
||||||
ExFreePool(Buffer);
|
ExFreePoolWithTag(Buffer, OB_NAME_TAG);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -556,7 +556,7 @@ ObpCaptureObjectCreateInformation(IN POBJECT_ATTRIBUTES ObjectAttributes,
|
||||||
/* Clear the string */
|
/* Clear the string */
|
||||||
RtlInitEmptyUnicodeString(ObjectName, NULL, 0);
|
RtlInitEmptyUnicodeString(ObjectName, NULL, 0);
|
||||||
|
|
||||||
/* He can't have specified a Root Directory */
|
/* It cannot have specified a Root Directory */
|
||||||
if (ObjectCreateInfo->RootDirectory)
|
if (ObjectCreateInfo->RootDirectory)
|
||||||
{
|
{
|
||||||
Status = STATUS_OBJECT_NAME_INVALID;
|
Status = STATUS_OBJECT_NAME_INVALID;
|
||||||
|
@ -1247,7 +1247,7 @@ ObCreateObjectType(IN PUNICODE_STRING TypeName,
|
||||||
|
|
||||||
ASSERT(LocalObjectType->Index != 0);
|
ASSERT(LocalObjectType->Index != 0);
|
||||||
|
|
||||||
if (LocalObjectType->Index < 32)
|
if (LocalObjectType->Index < RTL_NUMBER_OF(ObpObjectTypes))
|
||||||
{
|
{
|
||||||
/* It fits, insert it */
|
/* It fits, insert it */
|
||||||
ObpObjectTypes[LocalObjectType->Index - 1] = LocalObjectType;
|
ObpObjectTypes[LocalObjectType->Index - 1] = LocalObjectType;
|
||||||
|
|
|
@ -1290,7 +1290,7 @@ PsSetProcessWin32Process(
|
||||||
if (Process->Win32Process == OldWin32Process)
|
if (Process->Win32Process == OldWin32Process)
|
||||||
{
|
{
|
||||||
/* Yes, so reset the win32 process to NULL */
|
/* Yes, so reset the win32 process to NULL */
|
||||||
Process->Win32Process = 0;
|
Process->Win32Process = NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -208,7 +208,7 @@ SeSetWorldSecurityDescriptor(SECURITY_INFORMATION SecurityInformation,
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
SepCaptureSecurityQualityOfService(IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL,
|
SepCaptureSecurityQualityOfService(IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL,
|
||||||
IN KPROCESSOR_MODE AccessMode,
|
IN KPROCESSOR_MODE AccessMode,
|
||||||
IN POOL_TYPE PoolType,
|
IN POOL_TYPE PoolType,
|
||||||
IN BOOLEAN CaptureIfKernel,
|
IN BOOLEAN CaptureIfKernel,
|
||||||
|
|
Loading…
Reference in a new issue