Subject: pkg/32468: sysutils/vcdimager-devel -- update to 0.7.23, fix infinite loop
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: None <svs+pr@grep.ru>
List: pkgsrc-bugs
Date: 01/06/2006 18:50:00
>Number: 32468
>Category: pkg
>Synopsis: sysutils/vcdimager-devel -- update to 0.7.23, fix infinite loop
>Confidential: no
>Severity: serious
>Priority: low
>Responsible: pkg-manager
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Fri Jan 06 18:50:00 +0000 2006
>Originator: Sergey Svishchev
>Release: 3.99.10
>Organization:
>Environment:
>Description:
Changes from 0.7.22 to 0.7.23 (from NEWS):
* Add libvcdinfo vcdinfo_get_area_selection() a routine to get the
selection number represented by an area for a specified a point
location
* Add libvcdinfo vcdinfo_get_set_resolution() a routine to get the
resolution for a given segment
* hack on memory leaks some more
* vcdxrip options more like vcd-info options
* check that selection area hot-spot values don't exceed 255.
* Update documentation
* Remove gcc 4 warnings and potential problems noted
* make --disable-static --enable-shared work with --versioned-libs
patch-zz fixes infinite loop in vcdinf_update_offset_list(). The fix is already submitted to upstream: http://savannah.gnu.org/support/index.php?func=detailitem&item_id=105012
>How-To-Repeat:
>Fix:
--- Makefile 29 Oct 2005 06:17:20 -0000 1.30
+++ Makefile 10 Dec 2005 14:57:45 -0000
@@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.30 2005/10/29 06:17:20 grant Exp $
#
-DISTNAME= vcdimager-0.7.22
-PKGREVISION= 1
+DISTNAME= vcdimager-0.7.23
CATEGORIES= sysutils
MASTER_SITES= http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7/
+PKGREVISION= 1
MAINTAINER= ben@NetBSD.org
HOMEPAGE= http://www.vcdimager.org/
--- distinfo 18 May 2005 18:48:37 -0000 1.9
+++ distinfo 10 Dec 2005 14:57:34 -0000
@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.9 2005/05/18 18:48:37 drochner Exp $
-SHA1 (vcdimager-0.7.22.tar.gz) = f160f57afbb4f14f0c27b8f64801250e5c124aaf
-RMD160 (vcdimager-0.7.22.tar.gz) = 9339726076db3596f361cc1524a20ac988f53f88
-Size (vcdimager-0.7.22.tar.gz) = 984278 bytes
+SHA1 (vcdimager-0.7.23.tar.gz) = 6d1a3125fa8b7fa88a993e0c028cadcc03ac6304
+RMD160 (vcdimager-0.7.23.tar.gz) = c43ed14f0b81ada40c94b5954e9e689831cef2c2
+Size (vcdimager-0.7.23.tar.gz) = 1009549 bytes
SHA1 (patch-ac) = 7424deb20d9a74f5452491ef5c2b88dd8c0a6338
+SHA1 (patch-zz) = 7d58fc0497711891e44c37b7d4fe59db5e500210
--- /dev/null 2006-01-06 21:45:54.000000000 +0300
+++ patches/patch-zz 2005-12-10 17:57:32.000000000 +0300
@@ -0,0 +1,16 @@
+$NetBSD$
+
+--- lib/info_private.c.orig 2005-02-02 00:37:37.000000000 +0000
++++ lib/info_private.c
+@@ -102,10 +102,9 @@ vcdinf_update_offset_list(struct _vcdinf
+ }
+ } else {
+ /* See if we've skipped any LID numbers. */
+- last_lid++;
+ while (last_lid != ofs->lid ) {
+ lid_t * lid=calloc(1, sizeof(lid_t));
+- *lid = last_lid;
++ *lid = last_lid++;
+ _cdio_list_append(unused_lids, lid);
+ }
+ if (last_lid > max_seen_lid) max_seen_lid=last_lid;