Module Name:    src
Committed By:   martin
Date:           Sat Jul 20 15:33:04 UTC 2024

Modified Files:
        src/lib/libcurses [netbsd-10]: refresh.c

Log Message:
Pull up following revision(s) (requested by rin in ticket #756):

        lib/libcurses/refresh.c: revision 1.127

Don't set the clear_to_eol variable in doupdate to NULL, this was a
leftover from previous code that makes no sense and makes worms(6)
crash randomly.  Thanks to kre@ for reporting this.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.126.2.1 src/lib/libcurses/refresh.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libcurses/refresh.c
diff -u src/lib/libcurses/refresh.c:1.126 src/lib/libcurses/refresh.c:1.126.2.1
--- src/lib/libcurses/refresh.c:1.126	Mon Dec  5 21:14:25 2022
+++ src/lib/libcurses/refresh.c	Sat Jul 20 15:33:03 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: refresh.c,v 1.126 2022/12/05 21:14:25 blymn Exp $	*/
+/*	$NetBSD: refresh.c,v 1.126.2.1 2024/07/20 15:33:03 martin Exp $	*/
 
 /*
  * Copyright (c) 1981, 1993, 1994
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)refresh.c	8.7 (Berkeley) 8/13/94";
 #else
-__RCSID("$NetBSD: refresh.c,v 1.126 2022/12/05 21:14:25 blymn Exp $");
+__RCSID("$NetBSD: refresh.c,v 1.126.2.1 2024/07/20 15:33:03 martin Exp $");
 #endif
 #endif				/* not lint */
 
@@ -1382,7 +1382,6 @@ makech(int wy)
 					}
 					return OK;
 				}
-				ce = NULL;
 			}
 
 #ifdef HAVE_WCHAR

Reply via email to