]> git.wh0rd.org Git - nano.git/commitdiff
fix display problem caused by the memory corruption fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jan 2005 19:05:04 +0000 (19:05 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jan 2005 19:05:04 +0000 (19:05 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2237 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index a7007e598cd238b6042ae554759e3798630018f3..7d86081ef5b1b9a8906f1d68d2f3eb36edaa617c 100644 (file)
@@ -2470,7 +2470,13 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
        start_index += wide_buf_len;
     }
 
+    if (index < alloc_len)
+       converted[index] = '\0';
+
+    /* Make sure converted takes up no more than len columns. */
+    index = actual_x(converted, len);
     null_at(&converted, index);
+
     return converted;
 }