Skip to content

Commit 6bded0f

Browse files
fix:
1 parent d3d96f0 commit 6bded0f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ return WideToString(stringBuffer);
15861586
} else {
15871587
auto queryInfo = (pNtQueryInformationProcess)GetProcAddress(GetModuleHandleA("ntdll.dll"), "NtQueryInformationProcess");
15881588
if (!queryInfo) {
1589-
v
1589+
return "";
15901590
}
15911591

15921592
ULONG_PTR peb32Address = 0;
@@ -2108,7 +2108,7 @@ void PIDinspect(const std::vector<DWORD>& pids, const std::vector<std::string>&
21082108

21092109

21102110
if (virtualTerminalEnabled) {
2111-
if (!process == "") {
2111+
if (!(process == "")) {
21122112
std::cout << "\033[34mTarget:\033[0m " << procName << "\033[0m" << std::endl;
21132113
std::cout << "\033[34mProcess:\033[0m " << process << "\033[90m (pid " << std::to_string(pid) << ")\033[0m" << std::endl;
21142114
} else {

0 commit comments

Comments
 (0)