Fix memory leak on cgroup read failure

This commit is contained in:
Christian Göttsche
2020-09-21 13:47:39 +02:00
committed by cgzones
parent 2c933f210b
commit eb260af6bf
2 changed files with 5 additions and 2 deletions

View File

@ -251,7 +251,7 @@ void LinuxProcess_writeField(Process* this, RichString* str, ProcessField field)
case VXID: xSnprintf(buffer, n, "%5u ", lp->vxid); break;
#endif
#ifdef HAVE_CGROUP
case CGROUP: xSnprintf(buffer, n, "%-10s ", lp->cgroup); break;
case CGROUP: xSnprintf(buffer, n, "%-10s ", lp->cgroup ? lp->cgroup : ""); break;
#endif
case OOM: xSnprintf(buffer, n, "%4u ", lp->oom); break;
case IO_PRIORITY: {