* read.c (s_set): Check for missing symbol name.

This commit is contained in:
Alan Modra 2001-07-27 08:35:56 +00:00
parent 411e0b6d6c
commit 409d19c41a
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-07-27 Tracy Kuhrt <Tracy.Kuhrt@microchip.com>
* read.c (s_set): Check for missing symbol name.
2001-07-26 Alan Modra <amodra@bigpond.net.au>
* write.c (relax_segment <rs_space>): Account for fr_fix.

View File

@ -2737,6 +2737,15 @@ s_set (equiv)
name = input_line_pointer;
delim = get_symbol_end ();
end_name = input_line_pointer;
if (name[0] == '\0')
{
as_bad (_("expected symbol name"));
*end_name = delim;
discard_rest_of_line ();
return;
}
*end_name = delim;
SKIP_WHITESPACE ();