From 02094f7fb947efc8ea235cc622e644a524773d14 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 21 Jan 2009 21:03:40 +0000 Subject: [PATCH] Merged revisions 169722 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r169722 | tilghman | 2009-01-21 15:02:32 -0600 (Wed, 21 Jan 2009) | 8 lines Extra NULLs in the output cause some terminal types to abort in the middle of a color code, causing terminal weirdness. (closes issue #14130) Reported by: coolmig Patches: 20090121__bug14130.diff.txt uploaded by Corydon76 (license 14) Tested by: Corydon76, coolmig ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@169723 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/asterisk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main/asterisk.c b/main/asterisk.c index 7cc9b6ccf7..25c08f44fd 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -2125,6 +2125,7 @@ static int ast_el_read_char(EditLine *editline, char *cp) if (*tmp == 127) { memmove(tmp, tmp + 1, strlen(tmp)); tmp--; + res--; } }