diff options
author | bjs <bjs@pkgsrc.org> | 2007-12-11 05:27:05 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2007-12-11 05:27:05 +0000 |
commit | 5d10a14d0d5195487c5b4010508e5eac280f0b81 (patch) | |
tree | 37f7e66e48f032caff32e1ffd58b95d3255128a8 /devel/ncursesw | |
parent | 375400ed9da188e8c99f58fa14393b4b3f568a10 (diff) | |
download | pkgsrc-5d10a14d0d5195487c5b4010508e5eac280f0b81.tar.gz |
Add a distribution patch (by Thomas Dickey) containing Coverity fixes.
Bump revisions of both ncurses and ncursesw packages.
fixes based on Coverity report:
------------------------------
- remove dead code in test/bs.c
- remove dead code in test/demo_defkey.c
- remove an unused assignment in progs/infocmp.c
- fix a limit check in tack/ansi.c tools_charset()
- fix tack/ansi.c tools_status() to perform the VT320/VT420
tests in request_cfss(). The function had exited too soon.
- fix a memory leak in tic.c's make_namelist()
- fix a couple of places in tack/output.c which did not check for
EOF.
- fix a loop-condition in test/bs.c
- add index checks in lib_color.c for color palettes
- add index checks in progs/dump_entry.c for version_filter()
handling of V_BSD case.
- fix a possible null-pointer dereference in copywin()
- fix a possible null-pointer dereference in waddchnstr()
- add a null-pointer check in _nc_expand_try()
- add a null-pointer check in tic.c's make_namelist()
- add a null-pointer check in _nc_expand_try()
- add null-pointer checks in test/cardfile.c
- fix a double-free in ncurses/tinfo/trim_sgr0.c
- fix a double-free in ncurses/base/wresize.c
- add try/catch block to c++/cursesmain.cc
other fixes prompted by inspection for Coverity report:
------------------------------------------------------
- modify ifdef's for c++ binding to use try/catch/throw statements
- add a null-pointer check in tack/ansi.c request_cfss()
- fix a memory leak in ncurses/base/wresize.c
- corrected check for valid memu/meml capabilities in
progs/dump_entry.c when handling V_HPUX case.
Diffstat (limited to 'devel/ncursesw')
-rw-r--r-- | devel/ncursesw/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ncursesw/Makefile b/devel/ncursesw/Makefile index 9322f647e59..038b4ddbc39 100644 --- a/devel/ncursesw/Makefile +++ b/devel/ncursesw/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2007/10/30 05:33:07 bjs Exp $ +# $NetBSD: Makefile,v 1.4 2007/12/11 05:27:05 bjs Exp $ .include "../../devel/ncurses/Makefile.common" PKGNAME= ${DISTNAME:S/ncurses/ncursesw/} -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= Wide character CRT screen handling and optimization package PATCHDIR= ${.CURDIR}/../../devel/ncurses/patches |