| commit | d74e8b755427ba0c0b7da299b2f1bcdbdc76f62e | [log] [tgz] |
|---|---|---|
| author | Benny Baumann <BenBE@geshi.org> | Sat Jan 30 15:31:59 2021 +0100 |
| committer | BenBE <BenBE@geshi.org> | Sun May 23 09:22:21 2021 +0200 |
| tree | 132473b9d2db101ede95ad7d6323cc9f8293b823 | |
| parent | 10790f0a54f6bb21ca8387a8a13ffe22036fb490 [diff] [blame] |
Move procComm and procExe to main Process structure
diff --git a/Process.c b/Process.c index 070f7e5..a45d9c0 100644 --- a/Process.c +++ b/Process.c
@@ -515,6 +515,8 @@ void Process_done(Process* this) { assert (this != NULL); free(this->cmdline); + free(this->procComm); + free(this->procExe); free(this->tty_name); }