From: Nick Clifton Date: Mon, 24 Jun 2013 14:28:17 +0000 (+0000) Subject: PR 15657 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd6d434c14735b0f374bada533793bbad5393e19;p=binutils-gdb.git PR 15657 * hash.c (_bfd_stringtab_add): Copy the string if COPY is true. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f80ccefdc5f..19c4c5fc053 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-06-24 Wawa + + PR 15657 + * hash.c (_bfd_stringtab_add): Copy the string if COPY is true. + 2013-06-23 Richard Sandiford * Makefile.am (BFD32_BACKENDS, BFD32_BACKENDS_CFILES): Move MIPS ELF diff --git a/bfd/hash.c b/bfd/hash.c index f2dce4cd18d..82e711aff5b 100644 --- a/bfd/hash.c +++ b/bfd/hash.c @@ -808,7 +808,8 @@ _bfd_stringtab_free (struct bfd_strtab_hash *table) /* Get the index of a string in a strtab, adding it if it is not already present. If HASH is FALSE, we don't really use the hash - table, and we don't eliminate duplicate strings. */ + table, and we don't eliminate duplicate strings. If COPY is true + then store a copy of STR if creating a new entry. */ bfd_size_type _bfd_stringtab_add (struct bfd_strtab_hash *tab, @@ -834,11 +835,13 @@ _bfd_stringtab_add (struct bfd_strtab_hash *tab, entry->root.string = str; else { + size_t len = strlen (str) + 1; char *n; - n = (char *) bfd_hash_allocate (&tab->table, strlen (str) + 1); + n = (char *) bfd_hash_allocate (&tab->table, len); if (n == NULL) return (bfd_size_type) -1; + memcpy (n, str, len); entry->root.string = n; } entry->index = (bfd_size_type) -1;