* gasp.c (main): Set next field of new include_path structure to

NULL.  From Avery Pennarun <averyp@gdc.ca>.
This commit is contained in:
Ian Lance Taylor 1998-04-03 02:51:47 +00:00
parent b443327946
commit 335c5c6c9d
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,11 @@
Thu Apr 2 16:36:47 1998 Ian Lance Taylor <ian@cygnus.com>
* gasp.c (main): Set next field of new include_path structure to
NULL. From Avery Pennarun <averyp@gdc.ca>.
* read.c (s_mri_sect): Call as_bad rather than abort for an
unsupported MRI target.
Wed Apr 1 11:08:27 1998 Nick Clifton <nickc@cygnus.com>
* config/tc-arm.c (arm_validate_fix): New function. Determine if

View file

@ -3630,6 +3630,7 @@ main (argc, argv)
case 'I':
{
include_path *p = (include_path *) xmalloc (sizeof (include_path));
p->next = NULL;
sb_new (&p->path);
sb_add_string (&p->path, optarg);
if (paths_tail)