aboutsummaryrefslogtreecommitdiffstats
path: root/main/asterisk.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-21 21:03:40 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-21 21:03:40 +0000
commitf33bb247765780c77f460bdfc064a61cdfc195b5 (patch)
tree17ae7aec2a2cf7d57ba1c90a094b929337b7beab /main/asterisk.c
parentd95c6cc405d81745aa0bf04f65de342e8ceed8cf (diff)
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: http://svn.digium.com/svn/asterisk/trunk@169723 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/asterisk.c')
-rw-r--r--main/asterisk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 7cc9b6ccf..25c08f44f 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--;
}
}