mirror of
https://github.com/a0rtega/pafish
synced 2024-11-22 14:21:19 +03:00
Minor bugfix
This commit is contained in:
parent
02a6590271
commit
417963345c
@ -342,11 +342,11 @@ int vbox_processes(int writelogs) {
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
if (lstrcmpi(pentry.szExeFile, "vboxservice.exe") == 0) {
|
if (lstrcmpi(pentry.szExeFile, "vboxservice.exe") == 0) {
|
||||||
write_log("VirtualBox traced using vboxservice.exe process");
|
if (writelogs) write_log("VirtualBox traced using vboxservice.exe process");
|
||||||
res = TRUE;
|
res = TRUE;
|
||||||
}
|
}
|
||||||
if (lstrcmpi(pentry.szExeFile, "vboxtray.exe") == 0) {
|
if (lstrcmpi(pentry.szExeFile, "vboxtray.exe") == 0) {
|
||||||
write_log("VirtualBox traced using vboxtray.exe process");
|
if (writelogs) write_log("VirtualBox traced using vboxtray.exe process");
|
||||||
res = TRUE;
|
res = TRUE;
|
||||||
}
|
}
|
||||||
} while (Process32Next(hpSnap, &pentry));
|
} while (Process32Next(hpSnap, &pentry));
|
||||||
|
Loading…
Reference in New Issue
Block a user