File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,11 @@ VOID PhpUpdateHandleGeneralListViewGroups(
359
359
NULL
360
360
);
361
361
362
- if (PhEqualString2 (Context -> HandleItem -> TypeName , L"ALPC Port" , TRUE))
362
+ if (PhIsNullOrEmptyString (Context -> HandleItem -> TypeName ))
363
+ {
364
+ NOTHING ;
365
+ }
366
+ else if (PhEqualString2 (Context -> HandleItem -> TypeName , L"ALPC Port" , TRUE))
363
367
{
364
368
PhAddListViewGroup (Context -> ListViewHandle , PH_HANDLE_GENERAL_CATEGORY_ALPC , L"ALPC Port" );
365
369
Context -> ListViewRowCache [PH_HANDLE_GENERAL_INDEX_SEQUENCENUMBER ] = PhAddListViewGroupItem (
@@ -582,7 +586,11 @@ VOID PhpUpdateHandleGeneral(
582
586
NtClose (processHandle );
583
587
}
584
588
585
- if (PhEqualString2 (Context -> HandleItem -> TypeName , L"ALPC Port" , TRUE))
589
+ if (PhIsNullOrEmptyString (Context -> HandleItem -> TypeName ))
590
+ {
591
+ NOTHING ;
592
+ }
593
+ else if (PhEqualString2 (Context -> HandleItem -> TypeName , L"ALPC Port" , TRUE))
586
594
{
587
595
NTSTATUS status ;
588
596
HANDLE processHandle ;
You can’t perform that action at this time.
0 commit comments