Skip to content
Snippets Groups Projects
Commit 16a1d66b authored by Kai Tietz's avatar Kai Tietz
Browse files

2008-12-23 Kai Tietz <kai.tietz@onevision.com>

	* rcparse.y (rcdata_data): Allow empty comma elements.
parent b06f3b1b
No related branches found
No related tags found
No related merge requests found
2008-12-23 Kai Tietz <kai.tietz@onevision.com>
* rcparse.y (rcdata_data): Allow empty comma elements.
2008-12-23 Nick Clifton <nickc@redhat.com>
* objdump.c (dump_reloc_set): Remove STT_IFUNC support.
......
......@@ -1248,6 +1248,10 @@ rcdata_data:
$1.last->next = ri;
$$.last = ri;
}
| rcdata_data ','
{
$$=$1;
}
;
/* Stringtable resources. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment