From 5825dfc52513bdb91e298f7cf7642235644ee65a Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Fri, 27 Nov 1998 17:03:39 +0000 Subject: [PATCH] * elflink.h (compute_bucket_count): Don't allow minsize==0, it causes division by zero later on. --- bfd/ChangeLog | 5 +++++ bfd/elflink.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e6f40de5b2a..8e1c3ed9a4b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Fri Nov 27 17:51:38 1998 Geoff Keating + + * elflink.h (compute_bucket_count): Don't allow minsize==0, it + causes division by zero later on. + Thu Nov 26 11:19:35 1998 Dave Brolley * elf32-fr30.c (fr30_elf_pc9_reloc,fr30_elf_pc12_reloc): Not diff --git a/bfd/elflink.h b/bfd/elflink.h index bbd83398264..40f45a0f245 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2259,6 +2259,8 @@ compute_bucket_count (info) that the hashing table must at least have NSYMS/4 and at most 2*NSYMS buckets. */ minsize = nsyms / 4; + if (minsize == 0) + minsize = 1; best_size = maxsize = nsyms * 2; /* Create array where we count the collisions in. We must use bfd_malloc -- 2.30.2