summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2006-11-13 22:00:16 +0000
committerHisham Muhammad <hisham@gobolinux.org>2006-11-13 22:00:16 +0000
commita8f45d5743c0d503cfd394ba80b5a64fe5407a73 (patch)
tree2a07a4de96943b731fb9c93727c0cc9f3c0f40c2
parent9076b9edebb10240f8abae1f0476deeb271dac63 (diff)
Sanity cleanup.
-rw-r--r--Process.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Process.c b/Process.c
index 5fc3e835..9dba8a3a 100644
--- a/Process.c
+++ b/Process.c
@@ -126,6 +126,7 @@ Process* Process_new(struct ProcessList_ *pl) {
Object_setClass(this, PROCESS_CLASS);
((Object*)this)->display = Process_display;
((Object*)this)->delete = Process_delete;
+ this->pid = 0;
this->pl = pl;
this->tag = false;
this->updated = false;
@@ -141,6 +142,7 @@ Process* Process_clone(Process* this) {
Process* clone = malloc(sizeof(Process));
memcpy(clone, this, sizeof(Process));
this->comm = NULL;
+ this->pid = 0;
return clone;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy