This commit is contained in:
Christian Göttsche 2020-11-28 20:53:49 +01:00
parent a7cf6c67d6
commit 5ee6875f73
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void LinuxProcess_makeCommandStr(Process* this) {
/* Check for any changed fields since we last built this string */
if (mc->cmdlineChanged || mc->commChanged || mc->exeChanged) {
free(mc->str);
/* Accomodate the column text, two field separators and terminating NUL */
/* Accommodate the column text, two field separators and terminating NUL */
mc->str = xCalloc(1, mc->maxLen + 2*SEPARATOR_LEN + 1);
}