Add a check for a NULL table pointer before attempting to compute a DWARF filename.
PR 23065 * dwarf2.c (concat_filename): Check for a NULL table pointer.
This commit is contained in:
parent
e9301e762a
commit
6327533b1f
@ -1,3 +1,8 @@
|
||||
2018-04-17 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 23065
|
||||
* dwarf2.c (concat_filename): Check for a NULL table pointer.
|
||||
|
||||
2018-04-16 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 23061
|
||||
|
@ -1566,7 +1566,7 @@ concat_filename (struct line_info_table *table, unsigned int file)
|
||||
{
|
||||
char *filename;
|
||||
|
||||
if (file - 1 >= table->num_files)
|
||||
if (table == NULL || file - 1 >= table->num_files)
|
||||
{
|
||||
/* FILE == 0 means unknown. */
|
||||
if (file)
|
||||
|
Loading…
Reference in New Issue
Block a user