mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[HAL]
- Revert part of r53788 (MAXIMUM_IDTVECTOR is a valid vector number) - The buffer overrun in the IDT code was already fixed by r53420 svn path=/trunk/; revision=53806
This commit is contained in:
parent
25d3c6af4a
commit
51a6c871a9
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ HalpReportResourceUsage(IN PUNICODE_STRING HalName,
|
|||
while (TRUE)
|
||||
{
|
||||
/* Check for valid vector number */
|
||||
if (i < MAXIMUM_IDTVECTOR)
|
||||
if (i <= MAXIMUM_IDTVECTOR)
|
||||
{
|
||||
/* Check if this entry should be parsed */
|
||||
if ((HalpIDTUsageFlags[i].Flags & FlagMatch))
|
||||
|
|
Loading…
Reference in a new issue