Skip to content

Commit a3669fd

Browse files
[NTOS:KD64] Fix 'MAX_KD_COMPONENT_TABLE_ENTRIES' value (reactos#2992)
Addendum to ceb58c8.
1 parent 46416a6 commit a3669fd

File tree

1 file changed

+1
-1
lines changed
  • ntoskrnl/include/internal

1 file changed

+1
-1
lines changed

ntoskrnl/include/internal/kd64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ extern ULONG TraceDataBufferPosition;
561561
//
562562
// Debug Filter Component Table
563563
//
564-
#define MAX_KD_COMPONENT_TABLE_ENTRIES (DPFLTR_ENDOFTABLE_ID + 2)
564+
#define MAX_KD_COMPONENT_TABLE_ENTRIES (DPFLTR_ENDOFTABLE_ID + 1)
565565
extern ULONG KdComponentTableSize;
566566
extern PULONG KdComponentTable[MAX_KD_COMPONENT_TABLE_ENTRIES];
567567

0 commit comments

Comments
 (0)