diff options
author | tron <tron@pkgsrc.org> | 2006-05-18 18:45:37 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-05-18 18:45:37 +0000 |
commit | 50f4b4d815365ffef7d589a3e1ea66e8b922dddc (patch) | |
tree | 0b90cccf08228421ce4a4443b0b7835274ff954b /multimedia/xine-lib/patches | |
parent | 2f6394151dc95f8266ab56e4d138b4a386dc36f2 (diff) | |
download | pkgsrc-50f4b4d815365ffef7d589a3e1ea66e8b922dddc.tar.gz |
Fix security problem reported in CVE-2006-1664.
Bump package revision because of this fix.
Diffstat (limited to 'multimedia/xine-lib/patches')
-rw-r--r-- | multimedia/xine-lib/patches/patch-at | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/xine-lib/patches/patch-at b/multimedia/xine-lib/patches/patch-at new file mode 100644 index 00000000000..2ff68495b28 --- /dev/null +++ b/multimedia/xine-lib/patches/patch-at @@ -0,0 +1,13 @@ +$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; |