]> git.wh0rd.org Git - nano.git/commitdiff
Minor fix for quote code, forgot to adjust null by qdepth
authorChris Allegretta <chrisa@asty.org>
Mon, 4 Mar 2002 18:12:28 +0000 (18:12 +0000)
committerChris Allegretta <chrisa@asty.org>
Mon, 4 Mar 2002 18:12:28 +0000 (18:12 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1098 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

nano.c

diff --git a/nano.c b/nano.c
index d12f99bcc4e14a3e615a16c44b33e91fcc37f336..814b6f2b681068124a988d6354006415cb122893 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -2356,13 +2356,12 @@ int do_justify(void)
            len2 = strlen(current->data + i + 1);
            tmpline->data = charalloc(len2 + 1 + qdepth);
 
-           tmpline->data[0] = '\0';
            for (j = 0; j < qdepth; j += strlen(quotestr))
                strcpy(&tmpline->data[j], quotestr);
 
            /* Skip the white space in current. */
            memcpy(&tmpline->data[j], current->data + i + 1, len2);
-           tmpline->data[len2] = '\0';
+           tmpline->data[len2 + qdepth] = '\0';
 
            current->data = nrealloc(current->data, i + 1);