Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.24 2014/12/08 00:55:58 rodent Exp $
# $NetBSD: Makefile,v 1.25 2015/04/13 12:33:49 tnn Exp $
DISTNAME= less-470
DISTNAME= less-475
CATEGORIES= misc
MASTER_SITES= http://www.greenwoodsoftware.com/less/

View File

@@ -1,6 +1,5 @@
$NetBSD: distinfo,v 1.14 2014/12/08 00:55:58 rodent Exp $
$NetBSD: distinfo,v 1.15 2015/04/13 12:33:49 tnn Exp $
SHA1 (less-470.tar.gz) = 167c0b65bb086895b2a9583a52b6a74e10d5e933
RMD160 (less-470.tar.gz) = c24bd0994b597b953b55d8e928136ccb76f3c88c
Size (less-470.tar.gz) = 316014 bytes
SHA1 (patch-ac) = d50886aff976d81f23684cd96b5c9e7f94554b93
SHA1 (less-475.tar.gz) = 8232220364ce95fe2397fd717cad4ecffa6bcbce
RMD160 (less-475.tar.gz) = a1404028b0d17492a1f8f28a2e4638de0975e6dd
Size (less-475.tar.gz) = 316345 bytes

View File

@@ -1,16 +0,0 @@
$NetBSD: patch-ac,v 1.2 2011/07/08 10:42:53 tron Exp $
Fix resource leak found by Coverity scan of the NetBSD sources.
--- edit.c.orig 2005-12-03 21:20:32.000000000 +0100
+++ edit.c
@@ -711,7 +711,8 @@ use_logfile(filename)
*/
filename = shell_unquote(filename);
exists = open(filename, OPEN_READ);
- close(exists);
+ if (exists >= 0)
+ close(exists);
exists = (exists >= 0);
/*