Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/lib/libcurses Pull up following revision(s) (requested by...
details: https://anonhg.NetBSD.org/src/rev/a36de55d07b8
branches: netbsd-9
changeset: 935961:a36de55d07b8
user: martin <martin%NetBSD.org@localhost>
date: Tue Jul 14 13:37:18 2020 +0000
description:
Pull up following revision(s) (requested by uwe in ticket #1004):
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 082e7e32b42d -r a36de55d07b8 lib/libcurses/newwin.c
--- a/lib/libcurses/newwin.c Mon Jul 13 14:34:30 2020 +0000
+++ b/lib/libcurses/newwin.c Tue Jul 14 13:37:18 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: newwin.c,v 1.57 2019/06/09 07:40:14 blymn Exp $ */
+/* $NetBSD: newwin.c,v 1.57.2.1 2020/07/14 13:37:18 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.57 2019/06/09 07:40:14 blymn Exp $");
+__RCSID("$NetBSD: newwin.c,v 1.57.2.1 2020/07/14 13:37:18 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