https://git.reactos.org/?p=reactos.git;a=commitdiff;h=df829f79487a7ec1946751585057b7c7ad0bd544

commit df829f79487a7ec1946751585057b7c7ad0bd544
Author:     Pierre Schweitzer <[email protected]>
AuthorDate: Sun Feb 10 11:23:57 2019 +0100
Commit:     Pierre Schweitzer <[email protected]>
CommitDate: Sun Feb 10 11:23:57 2019 +0100

    [NTOSKRNL] Also display sections name
---
 ntoskrnl/ex/handle.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ntoskrnl/ex/handle.c b/ntoskrnl/ex/handle.c
index fdd9f2d7e4..f75f0363f7 100644
--- a/ntoskrnl/ex/handle.c
+++ b/ntoskrnl/ex/handle.c
@@ -1438,7 +1438,8 @@ BOOLEAN ExpKdbgExtHandle(ULONG Argc, PCHAR Argv[])
                 /* For directory, and win32k objects, display object name */
                 else if (ObjectHeader->Type == ObpDirectoryObjectType ||
                          ObjectHeader->Type == ExWindowStationObjectType ||
-                         ObjectHeader->Type == ExDesktopObjectType)
+                         ObjectHeader->Type == ExDesktopObjectType ||
+                         ObjectHeader->Type == MmSectionObjectType)
                 {
                     ObjectNameInfo = OBJECT_HEADER_TO_NAME_INFO(ObjectHeader);
                     if (ObjectNameInfo != NULL && ObjectNameInfo->Name.Buffer 
!= NULL)

Reply via email to