[NTOS] Remove unnecessary NULL checks and add a missing one. CIDs 1411958, 716670, 1322186

This commit is contained in:
Thomas Faber 2018-01-20 13:42:39 +01:00
parent cd992d022f
commit fda24da872
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 2 additions and 3 deletions

View file

@ -337,7 +337,6 @@ CcUninitializeCacheMap (
FileObject, TruncateSize, UninitializeCompleteEvent);
if (TruncateSize != NULL &&
FileObject->SectionObjectPointer != NULL &&
FileObject->SectionObjectPointer->SharedCacheMap != NULL)
{
SharedCacheMap = FileObject->SectionObjectPointer->SharedCacheMap;

View file

@ -775,7 +775,7 @@ DbgkpPostFakeThreadMessages(IN PEPROCESS Process,
{
/* Dereference and fail */
if (pFirstThread) ObDereferenceObject(pFirstThread);
if (pLastThread) ObDereferenceObject(pLastThread);
ObDereferenceObject(pLastThread);
return Status;
}

View file

@ -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);