26a6efeaa1
Thu Jul 13 2000 Prospector <bugzilla@redhat.com> - automatic rebuild Mon Jun 05 2000 Jeff Johnson <jbj@redhat.com> - FHS packaging. Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - handle compressed manpages Tue Aug 10 1999 Jeff Johnson <jbj@redhat.com> - make sure created database header is initialized (#4457). Tue Jun 01 1999 Jeff Johnson <jbj@redhat.com> - update to 1.8.0. - repackage to include /usr/include/gdbm/*dbm.h compatibility includes. Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 19) Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com> - build against glibc 2.1 Thu May 07 1998 Prospector System <bugs@redhat.com> - translations modified for de, fr, tr Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com> - gdbm-devel moved to Development/Libraries Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com> - buildroot and built for Manhattan Tue Oct 14 1997 Donnie Barnes <djb@redhat.com> - spec file cleanups Thu Jun 12 1997 Erik Troan <ewt@redhat.com> - built against glibc
12 lines
401 B
Diff
12 lines
401 B
Diff
--- gdbm-1.8.0/gdbmopen.c.jbj Tue Aug 10 10:57:38 1999
|
|
+++ gdbm-1.8.0/gdbmopen.c Tue Aug 10 10:59:06 1999
|
|
@@ -214,7 +214,7 @@
|
|
file_block_size = block_size;
|
|
|
|
/* Get space for the file header. */
|
|
- dbf->header = (gdbm_file_header *) malloc (file_block_size);
|
|
+ dbf->header = (gdbm_file_header *) calloc (1, file_block_size);
|
|
if (dbf->header == NULL)
|
|
{
|
|
gdbm_close (dbf);
|