summaryrefslogtreecommitdiff
path: root/bfd/som.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2010-06-08 15:43:38 +0000
committerTristan Gingold <gingold@adacore.com>2010-06-08 15:43:38 +0000
commit7da73d69b0c630cf527454e23431747010746393 (patch)
tree83491730e7cfe574073af46a7eba9102af4f7ee3 /bfd/som.c
parent09137c09f4e188e3a8d925d8f22c074a3f625693 (diff)
downloadbinutils-gdb-7da73d69b0c630cf527454e23431747010746393.tar.gz
2010-06-08 Tristan Gingold <gingold@adacore.com>
* som.c (som_bfd_free_cached_info): Do not free relocations as they were allocated with bfd_zalloc.
Diffstat (limited to 'bfd/som.c')
-rw-r--r--bfd/som.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/som.c b/bfd/som.c
index fbdc2b4cc9d..c793cb9b496 100644
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -6304,8 +6304,7 @@ som_bfd_free_cached_info (bfd *abfd)
/* Free the native relocations. */
o->reloc_count = (unsigned) -1;
FREE (som_section_data (o)->reloc_stream);
- /* Free the generic relocations. */
- FREE (o->relocation);
+ /* Do not free the generic relocations as they are objalloc'ed. */
}
#undef FREE