(__nscd_getgrouplist): Add assert.

This commit is contained in:
Ulrich Drepper 2004-10-01 21:35:08 +00:00
parent 927f0673b3
commit f7fa2b1951
1 changed files with 6 additions and 2 deletions

View File

@ -128,8 +128,12 @@ __nscd_getgrouplist (const char *user, gid_t group, long int *size,
} }
} }
else else
/* No group found yet. */ {
retval = 0; /* No group found yet. */
retval = 0;
assert (*size >= 1);
}
/* Check whether GROUP is part of the mix. If not, add it. */ /* Check whether GROUP is part of the mix. If not, add it. */
if (retval >= 0) if (retval >= 0)