mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOSKRNL] Properly check for negative values in IoCheckEaBufferValidity()
CID 1441355, 1441382
This commit is contained in:
parent
402c983094
commit
a0c33934fc
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue