https://sourceware.org/bugzilla/show_bug.cgi?id=21732

--- Comment #2 from Göran Uddeborg <goeran at uddeborg dot se> ---
I just found a number of similar cases in binutils/readelf.c:

        error (_("Size truncation prevents reading 0x%" BFD_VMA_FMT "x"
                 " elements of size 0x%" BFD_VMA_FMT "x for %s\n"),

        error (_("Size overflow prevents reading 0x%" BFD_VMA_FMT "x"
                 " elements of size 0x%" BFD_VMA_FMT "x for %s\n"),

        error (_("Reading 0x%" BFD_VMA_FMT "x"
                 " bytes extends past end of file for %s\n"),

            error (_("Out of memory allocating 0x%" BFD_VMA_FMT "x"
                     " bytes for %s\n"),

        error (_("Unable to read in 0x%" BFD_VMA_FMT "x bytes of %s\n"),
               amt, reason);

      error (_("Size truncation prevents reading %" BFD_VMA_FMT "u"
               " elements of size %u\n"),

      error (_("Invalid number of dynamic entries: %" BFD_VMA_FMT "u\n"),
             number);

      error (_("Out of memory reading %" BFD_VMA_FMT "u dynamic entries\n"),
             number);

      error (_("Unable to read in %" BFD_VMA_FMT "u bytes of dynamic data\n"),
             number * ent_size);

      error (_("Out of memory allocating space for %" BFD_VMA_FMT "u"
               " dynamic entries\n"),

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to