]> git.marmaro.de Git - mmh/commitdiff
fix bug with insertion of newline being wrong if the num function was used at
authorOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 18 Jan 2006 16:43:27 +0000 (16:43 +0000)
committerOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 18 Jan 2006 16:43:27 +0000 (16:43 +0000)
the end of the format buffer

ChangeLog
sbr/fmt_scan.c

index e7f3e1c8265e1b261c0059c6992c8a5d28769d2f..f634ba200a1ab257c2d7d76b6cb0d09286596a3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-18  Oliver Kiddle  <okiddle@yahoo.co.uk>
+
+       * sbr/fmt_scan.c: fix bug with insertion of newline being wrong if
+       the num function was used at the end of the format buffer
+
 2006-01-17  David Levine <levinedl@acm.org>
 
        * uip/post.c, uip/spost.c: in make_bcc_file (), use same
index c049ad43b73fbfe261d86e1384a35a1eb5b61e80..b27f7c6c9f259fa7108f6eb802678e4cc4abb4e5 100644 (file)
@@ -342,8 +342,12 @@ fmt_scan (struct format *format, char *scanl, int width, int *dat)
            adios (NULL, "internal error (FT_STRFW)");
 
        case FT_NUM:
-           n = snprintf(cp, ep - cp, "%d", value);
-           if (n >= 0) cp += n;
+           n = snprintf(cp, ep - cp + 1, "%d", value);
+           if (n >= 0)
+               if (n >= ep - cp) {
+                   cp = ep;
+               } else
+                   cp += n;
            break;
        case FT_NUMF:
            cpnumber (&cp, value, fmt->f_width, fmt->f_fill, ep - cp);