Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/lib/libcurses Pull up following revision(s) (requested by...



details:   https://anonhg.NetBSD.org/src/rev/4af4354d4d45
branches:  netbsd-8
changeset: 935963:4af4354d4d45
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Jul 14 13:39:09 2020 +0000

description:
Pull up following revision(s) (requested by uwe in ticket #1574):

        lib/libcurses/newwin.c: revision 1.58

newwin - fix crash with negative ncols.

When support for negative nrows/ncols was added, one s/ncols/maxx/ was
missed so we ended up passing negative (i.e. huge unsigned) length
when hashing the line contents.

Reported by Naman Jain in PR lib/55484

diffstat:

 lib/libcurses/newwin.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 5786559623ba -r 4af4354d4d45 lib/libcurses/newwin.c
--- a/lib/libcurses/newwin.c    Mon Jul 13 14:37:41 2020 +0000
+++ b/lib/libcurses/newwin.c    Tue Jul 14 13:39:09 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: newwin.c,v 1.50.6.3 2018/10/09 10:01:38 martin Exp $   */
+/*     $NetBSD: newwin.c,v 1.50.6.4 2020/07/14 13:39:09 martin Exp $   */
 
 /*
  * Copyright (c) 1981, 1993, 1994
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)newwin.c   8.3 (Berkeley) 7/27/94";
 #else
-__RCSID("$NetBSD: newwin.c,v 1.50.6.3 2018/10/09 10:01:38 martin Exp $");
+__RCSID("$NetBSD: newwin.c,v 1.50.6.4 2020/07/14 13:39:09 martin Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -174,7 +174,7 @@
 #endif /* HAVE_WCHAR */
                }
                lp->hash = __hash((char *)(void *)lp->line,
-                                 (size_t)(ncols * __LDATASIZE));
+                                 (size_t)(maxx * __LDATASIZE));
        }
        return (win);
 }



Home | Main Index | Thread Index | Old Index