From 69e39ce8e9a28515f37a7a1cd6d4e2ef8a1cad8e Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 21 Jan 2009 21:04:24 +0000 Subject: [PATCH] Merged revisions 169723 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r169723 | tilghman | 2009-01-21 15:03:40 -0600 (Wed, 21 Jan 2009) | 15 lines 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/branches/1.6.0@169724 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 d1b37b575b..4c9aa4a3c1 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -1966,6 +1966,7 @@ static int ast_el_read_char(EditLine *el, char *cp) if (*tmp == 127) { memmove(tmp, tmp + 1, strlen(tmp)); tmp--; + res--; } }