chew ubsan warning
authorAlan Modra <amodra@gmail.com>
Fri, 6 Aug 2021 10:16:22 +0000 (19:46 +0930)
committerAlan Modra <amodra@gmail.com>
Fri, 6 Aug 2021 13:36:53 +0000 (23:06 +0930)
It matters not at all if pc is incremented from its initial NULL
value, but avoid this silly runtime ubsan error.

* doc/chew.c (perform): Avoid incrementing NULL pc.

bfd/doc/chew.c

index b3be7fa9cdad97590a754db0b0d828c5025474b3..9271cd107f9487602cac1641fd242c13d789873b 100644 (file)
@@ -1301,12 +1301,12 @@ perform (void)
            {
              if (warning)
                fprintf (stderr, "warning, %s is not recognised\n", next);
-             skip_past_newline ();
+             idx = skip_past_newline_1 (ptr, idx);
            }
          free (next);
        }
       else
-       skip_past_newline ();
+       idx = skip_past_newline_1 (ptr, idx);
     }
 }