Move procComm and procExe to main Process structure

This commit is contained in:
Benny Baumann
2021-01-30 15:31:59 +01:00
committed by BenBE
parent 10790f0a54
commit d74e8b7554
5 changed files with 31 additions and 27 deletions

View File

@ -515,6 +515,8 @@ void Process_display(const Object* cast, RichString* out) {
void Process_done(Process* this) {
assert (this != NULL);
free(this->cmdline);
free(this->procComm);
free(this->procExe);
free(this->tty_name);
}