mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
e
This commit is contained in:
parent
b2eda89255
commit
c4261e8f03
1 changed files with 4 additions and 3 deletions
|
@ -73,9 +73,10 @@ OB_PREOP_CALLBACK_STATUS ObPreOpCallbackRoutine(
|
|||
* These processes will constantly open handles to any open process for various reasons,
|
||||
* so we will still strip them but we won't report them.. for now atleast.
|
||||
*/
|
||||
if ( process_creator_name == "Discord.exe" ||
|
||||
process_creator_name == "svchost.exe" ||
|
||||
process_creator_name == "explorer.exe" )
|
||||
|
||||
if ( !strcmp( process_creator_name, "Discord.exe" ) ||
|
||||
!strcmp( process_creator_name, "svchost.exe" ) ||
|
||||
!strcmp( process_creator_name, "explorer.exe" ) )
|
||||
goto end;
|
||||
|
||||
DEBUG_LOG( "handle stripped from: %s", process_creator_name );
|
||||
|
|
Loading…
Reference in a new issue