pkgsrc/multimedia/xine-lib/patches/patch-at
tron 50f4b4d815 Fix security problem reported in CVE-2006-1664.
Bump package revision because of this fix.
2006-05-18 18:45:37 +00:00

13 lines
363 B
Text

$NetBSD: patch-at,v 1.3 2006/05/18 18:45:37 tron Exp $
--- src/xine-utils/list.c.orig 2004-12-20 21:38:24.000000000 +0000
+++ src/xine-utils/list.c 2006-05-18 12:04:23.000000000 +0100
@@ -229,6 +229,8 @@
xine_node_t *node_cur;
node_cur = l->cur;
+ if (node_cur == NULL)
+ return;
if(node_cur->prev) {
node_cur->prev->next = node_cur->next;