Skip to content

Commit

Permalink
Fix terminating of some PPL process when driver ON
Browse files Browse the repository at this point in the history
  • Loading branch information
DartVanya committed Oct 6, 2024
1 parent 2328d2d commit 02be72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phlib/native.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ NTSTATUS PhTerminateProcess(
ExitStatus
);

if (status != STATUS_NOT_SUPPORTED)
if (status != STATUS_NOT_SUPPORTED && status != STATUS_ACCESS_DENIED)
return status;
}

Expand Down

0 comments on commit 02be72d

Please sign in to comment.