(__nscd_getgrouplist): Add assert.

This commit is contained in:
Ulrich Drepper 2004-10-01 21:35:08 +00:00
parent 927f0673b3
commit f7fa2b1951

View File

@ -128,8 +128,12 @@ __nscd_getgrouplist (const char *user, gid_t group, long int *size,
}
}
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. */
if (retval >= 0)