From 8140b6644d7a8d71e826c9550c2aa84a586f56aa Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 28 Oct 1999 03:52:01 +0000 Subject: * stabs.c (_bfd_link_section_stabs): Make sure .stabstr section starts with a zero. --- bfd/stabs.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bfd/stabs.c') diff --git a/bfd/stabs.c b/bfd/stabs.c index ea4da8f..e9ac167 100644 --- a/bfd/stabs.c +++ b/bfd/stabs.c @@ -230,6 +230,8 @@ _bfd_link_section_stabs (abfd, psinfo, stabsec, stabstrsec, psecinfo) sinfo->strings = _bfd_stringtab_init (); if (sinfo->strings == NULL) goto error_return; + /* Make sure the first byte is zero. */ + (void) _bfd_stringtab_add (sinfo->strings, "", true, true); if (! bfd_hash_table_init_n (&sinfo->includes.root, stab_link_includes_newfunc, 251)) -- cgit v1.1