(svn r15663) -Fix: growing of vsize as (some) threads weren't properly released.

This commit is contained in:
rubidium
2009-03-10 11:12:03 +00:00
parent 88e641282c
commit e48142c4db

View File

@@ -68,7 +68,10 @@ private:
NOT_REACHED(); NOT_REACHED();
} }
if (self_destruct) delete this; if (self_destruct) {
pthread_detach(pthread_self());
delete this;
}
} }
}; };