Commit d74b6dc8 authored by Score_Under's avatar Score_Under Committed by Hisham Muhammad
Browse files

Fix process name updates for shorter strings (#812)

When a process name changes from a long string to a short string,
truncate instead of just overwriting the beginning.
parent 666e1e76
......@@ -709,7 +709,7 @@ static bool LinuxProcessList_readCmdlineFile(Process* process, const char* dirna
}
command[lastChar + 1] = '\0';
process->basenameOffset = tokenEnd;
setCommand(process, command, lastChar);
setCommand(process, command, lastChar + 1);
return true;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment