* gasp.c (main): Set next field of new include_path structure to
authorIan Lance Taylor <ian@airs.com>
Fri, 3 Apr 1998 02:51:47 +0000 (02:51 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 3 Apr 1998 02:51:47 +0000 (02:51 +0000)
NULL.  From Avery Pennarun <averyp@gdc.ca>.

gas/ChangeLog
gas/gasp.c

index d0e92e278378c720804a4759afeb2cfebc8c387a..8c858937d62f1eb0bda48ac265d2d057401812c2 100644 (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
index 4ddfe44043fa166ab156e76a2e37f6f50da35417..d64c24268252f7d342d1cb87132317239360e0e2 100644 (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)