removed some old files, small updates

This commit is contained in:
Arnout Engelen
2005-08-27 14:52:22 +00:00
parent 4182fc0b17
commit e90b0906e7
6 changed files with 14 additions and 37 deletions

View File

@@ -268,7 +268,9 @@ void do_refresh()
uid_t uid = curproc->getVal()->getUid();
if (!ROBUST)
{
assert (getpwuid(uid) != NULL);
struct passwd * pwuid = getpwuid(uid);
assert (pwuid != NULL);
free (pwuid);
assert (curproc->getVal()->pid >= 0);
assert (n < nproc);
}