Fix asserts, don't use freed memory.

This commit is contained in:
Hisham Muhammad 2006-11-08 21:49:52 +00:00
parent 2713119249
commit 8adc7ac00f
1 changed files with 3 additions and 3 deletions

View File

@ -309,12 +309,12 @@ void ProcessList_remove(ProcessList* this, Process* p) {
assert(Vector_indexOf(this->processes, p, Process_pidCompare) != -1);
assert(Hashtable_get(this->processTable, p->pid) != NULL);
Process* pp = Hashtable_remove(this->processTable, p->pid);
assert(pp == p);
assert(pp == p); (void)pp;
int pid = p->pid;
int index = Vector_indexOf(this->processes, p, Process_pidCompare);
assert(index != -1);
Vector_remove(this->processes, index);
assert(Vector_indexOf(this->processes, p, Process_pidCompare) == -1);
assert(Hashtable_get(this->processTable, p->pid) == NULL);
assert(Hashtable_get(this->processTable, pid) == NULL); (void)pid;
}
Process* ProcessList_get(ProcessList* this, int index) {