[NTOSKRNL] Properly check for negative values in IoCheckEaBufferValidity()

CID 1441355, 1441382
This commit is contained in:
Pierre Schweitzer 2018-11-16 21:12:10 +01:00
parent 402c983094
commit a0c33934fc
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -228,7 +228,7 @@ IoCheckEaBufferValidity(IN PFILE_FULL_EA_INFORMATION EaBuffer,
if (NextEntryOffset == 0)
{
/* If we don't overflow! */
if (EaLength - ComputedLength < 0)
if ((LONG)(EaLength - ComputedLength) < 0)
{
goto FailPath;
}
@ -243,7 +243,7 @@ IoCheckEaBufferValidity(IN PFILE_FULL_EA_INFORMATION EaBuffer,
}
/* Check next entry offset value is positive */
if (NextEntryOffset < 0)
if ((LONG)NextEntryOffset < 0)
{
goto FailPath;
}