PR 28048
* dwarf.c (get_type_signedness): Don't run off end of buffer
printing DW_FORM_string attribute.
+2021-07-02 Alan Modra <amodra@gmail.com>
+
+ PR 28048
+ * dwarf.c (get_type_signedness): Don't run off end of buffer
+ printing DW_FORM_string attribute.
+
2021-07-01 Nick Clifton <nickc@redhat.com>
PR 28029
if (attr->form == DW_FORM_strp)
printf (", %s", fetch_indirect_string (uvalue));
else if (attr->form == DW_FORM_string)
- printf (", %s", orig_data);
+ printf (", %.*s", (int) (end - orig_data), orig_data);
}
break;