diff options
Diffstat (limited to 'cross')
-rw-r--r-- | cross/binutils/patches/patch-al | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cross/binutils/patches/patch-al b/cross/binutils/patches/patch-al new file mode 100644 index 00000000000..df6e6e32f43 --- /dev/null +++ b/cross/binutils/patches/patch-al @@ -0,0 +1,19 @@ +$NetBSD: patch-al,v 1.1 2000/06/11 18:27:29 mycroft Exp $ + +--- elflink.h.orig Fri May 1 11:48:10 1998 ++++ elflink.h Sun Jun 11 14:22:40 2000 +@@ -719,12 +719,13 @@ + } + + sz = bfd_section_size (abfd, s); +- msg = (char *) bfd_alloc (abfd, sz); ++ msg = (char *) bfd_alloc (abfd, sz + 1); + if (msg == NULL) + goto error_return; + + if (! bfd_get_section_contents (abfd, s, msg, (file_ptr) 0, sz)) + goto error_return; ++ msg[sz] = '\0'; + + if (! (_bfd_generic_link_add_one_symbol + (info, abfd, name, BSF_WARNING, s, (bfd_vma) 0, msg, |