* stabsread.c (define_symbol): Guard against bad stabstring input.
+2011-03-15 Michael Snyder <msnyder@vmware.com>
+
+ * stabsread.c (define_symbol): Guard against bad stabstring input.
+
2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
Remove trailing spaces and tabulations from pascal language
{
p += 2;
p = strchr (p, ':');
+ if (p == NULL)
+ {
+ complaint (&symfile_complaints,
+ _("Bad stabs string '%s'"), string);
+ return NULL;
+ }
}
/* If a nameless stab entry, all we need is the type, not the symbol.