if it errors, it errors, it's just a temp thing

This commit is contained in:
thepwrtank18 2023-07-08 00:19:36 -05:00
parent 3793abc8bb
commit 1b1290e92a
1 changed files with 0 additions and 4 deletions

View File

@ -220,7 +220,6 @@ bool TerminateProcessByName(const wchar_t* processName)
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (snapshot == INVALID_HANDLE_VALUE)
{
std::cerr << "Failed to create process snapshot." << std::endl;
return false;
}
@ -229,7 +228,6 @@ bool TerminateProcessByName(const wchar_t* processName)
if (!Process32FirstW(snapshot, &processEntry))
{
CloseHandle(snapshot);
std::cerr << "Failed to retrieve process information." << std::endl;
return false;
}
@ -248,7 +246,6 @@ bool TerminateProcessByName(const wchar_t* processName)
}
else
{
std::cerr << "Failed to terminate the process." << std::endl;
CloseHandle(processHandle);
CloseHandle(snapshot);
return false; // Failed to terminate the process
@ -256,7 +253,6 @@ bool TerminateProcessByName(const wchar_t* processName)
}
else
{
std::cerr << "Failed to open process handle." << std::endl;
CloseHandle(snapshot);
return false; // Failed to open process handle
}