소스 검색

Ignore NUL character as a padding character. Telnet may use this. Patch of

Roberto Vargas.
Christoph Lohmann 12 년 전
부모
커밋
b156352656
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      st.c

+ 2 - 0
st.c

@@ -1723,6 +1723,8 @@ tputc(char *c) {
 		if(sel.bx != -1 && BETWEEN(term.c.y, sel.by, sel.ey))
 			sel.bx = -1;
 		switch(ascii) {
+		case '\0': /* padding character, do nothing */
+			break;
 		case '\t':
 			tputtab(1);
 			break;