mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
[BZ #9741]
2009-01-28 Ulrich Drepper <drepper@redhat.com> [BZ #9741] * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used. Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
This commit is contained in:
parent
a7bd183ffe
commit
5627534a81
@ -1,3 +1,9 @@
|
||||
2009-01-28 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
[BZ #9741]
|
||||
* nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
|
||||
Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
|
||||
|
||||
2009-01-14 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Cache memory handling.
|
||||
Copyright (C) 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
|
||||
Copyright (C) 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
|
||||
|
||||
@ -163,7 +163,7 @@ gc (struct database_dyn *db)
|
||||
else
|
||||
{
|
||||
he = xmalloc (memory_needed);
|
||||
he_data = &he[db->head->nentries * sizeof (struct hashentry *)];
|
||||
he_data = &he[db->head->nentries];
|
||||
he_use_malloc = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user