mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[NTOS] Remove unnecessary NULL checks and add a missing one. CIDs 1411958, 716670, 1322186
This commit is contained in:
parent
cd992d022f
commit
fda24da872
3 changed files with 2 additions and 3 deletions
|
@ -337,7 +337,6 @@ CcUninitializeCacheMap (
|
|||
FileObject, TruncateSize, UninitializeCompleteEvent);
|
||||
|
||||
if (TruncateSize != NULL &&
|
||||
FileObject->SectionObjectPointer != NULL &&
|
||||
FileObject->SectionObjectPointer->SharedCacheMap != NULL)
|
||||
{
|
||||
SharedCacheMap = FileObject->SectionObjectPointer->SharedCacheMap;
|
||||
|
|
|
@ -775,7 +775,7 @@ DbgkpPostFakeThreadMessages(IN PEPROCESS Process,
|
|||
{
|
||||
/* Dereference and fail */
|
||||
if (pFirstThread) ObDereferenceObject(pFirstThread);
|
||||
if (pLastThread) ObDereferenceObject(pLastThread);
|
||||
ObDereferenceObject(pLastThread);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -1501,7 +1501,7 @@ Phase1InitializationDiscard(IN PVOID Context)
|
|||
if (!PoInitSystem(0)) KeBugCheck(INTERNAL_POWER_ERROR);
|
||||
|
||||
/* Check for Y2K hack */
|
||||
Y2KHackRequired = strstr(CommandLine, "YEAR");
|
||||
Y2KHackRequired = CommandLine ? strstr(CommandLine, "YEAR") : NULL;
|
||||
if (Y2KHackRequired) Y2KHackRequired = strstr(Y2KHackRequired, "=");
|
||||
if (Y2KHackRequired) YearHack = atol(Y2KHackRequired + 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue