mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Fix buffer allocation in files initgroups handler
This commit is contained in:
parent
998832a466
commit
ae1bc2fa1c
@ -1,3 +1,8 @@
|
||||
2011-11-07 Andreas Schwab <schwab@redhat.com>
|
||||
|
||||
* nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
|
||||
Fix size of allocated buffer.
|
||||
|
||||
2011-11-04 Andreas Schwab <schwab@redhat.com>
|
||||
|
||||
[BZ #10103]
|
||||
|
@ -73,7 +73,7 @@ _nss_files_initgroups_dyn (const char *user, gid_t group, long int *start,
|
||||
if (buffer_use_malloc || ! __libc_use_alloca (buflen + newbuflen))
|
||||
{
|
||||
void *newbuf = realloc (buffer_use_malloc ? buffer : NULL,
|
||||
buflen);
|
||||
newbuflen);
|
||||
if (newbuf == NULL)
|
||||
{
|
||||
*errnop = ENOMEM;
|
||||
|
Loading…
x
Reference in New Issue
Block a user