From d74e8b755427ba0c0b7da299b2f1bcdbdc76f62e Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 30 Jan 2021 15:31:59 +0100 Subject: Move procComm and procExe to main Process structure --- Process.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Process.c') diff --git a/Process.c b/Process.c index 070f7e57..a45d9c00 100644 --- a/Process.c +++ b/Process.c @@ -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); } -- cgit v1.2.3