1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* grp/initgroups.c (internal_getgrouplist): Don't prematurely

abort if there is no initgroups_dyn function.
This commit is contained in:
Ulrich Drepper
2008-10-30 16:55:44 +00:00
parent 21b07d8ba5
commit 332c4465b0
3 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1989,91,93,1996-2005,2006 Free Software Foundation, Inc.
/* Copyright (C) 1989,91,93,1996-2005,2006,2008 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -94,13 +94,8 @@ internal_getgrouplist (const char *user, gid_t group, long int *size,
fct = __nss_lookup_function (nip, "initgroups_dyn");
if (fct == NULL)
{
status = compat_call (nip, user, group, &start, size, groupsp,
limit, &errno);
if (nss_next_action (nip, NSS_STATUS_UNAVAIL) != NSS_ACTION_CONTINUE)
break;
}
status = compat_call (nip, user, group, &start, size, groupsp,
limit, &errno);
else
status = DL_CALL_FCT (fct, (user, group, &start, size, groupsp,
limit, &errno));