From: Tilghman Lesher Date: Wed, 21 Jan 2009 21:02:32 +0000 (+0000) Subject: Extra NULLs in the output cause some terminal types to abort in the middle of X-Git-Tag: 1.4.24-rc1~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e34da1e51969a0257e9b8cc6f52a31c8a629388e;p=thirdparty%2Fasterisk.git 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.4@169722 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/asterisk.c b/main/asterisk.c index 8ef99c6830..492af2d956 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -1832,6 +1832,7 @@ static int ast_el_read_char(EditLine *el, char *cp) if (*tmp == 127) { memmove(tmp, tmp + 1, strlen(tmp)); tmp--; + res--; } }