GNU bug report logs - #50611
one-byte (write) heap-buffer-underrun

Previous Next

Package: coreutils;

Reported by: Jim Meyering <jim <at> meyering.net>

Date: Thu, 16 Sep 2021 00:30:02 UTC

Severity: normal

Done: Paul Eggert <eggert <at> cs.ucla.edu>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Paul Eggert <eggert <at> cs.ucla.edu>
To: Pádraig Brady <P <at> draigBrady.com>, 50611 <at> debbugs.gnu.org,  jim <at> meyering.net
Subject: bug#50611: one-byte (write) heap-buffer-underrun
Date: Thu, 16 Sep 2021 11:51:02 -0700
On 9/16/21 4:34 AM, Pádraig Brady wrote:
> It got me thinking though, that we should not we warning/failing on 
> blank lines.
> I.e., we should be treating blank lines like comments.
> The attached does that.

Thaks, a good improvement. The nerd in me also suggests changing this:

      line[line_length] = '\0';

      /* Ignore blank lines.  */
      if (line_length == 0)
        continue;

to this:

      /* Ignore empty lines.  */
      if (line_length == 0)
        continue;

      line[line_length] = '\0';





This bug report was last modified 3 years and 302 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.