diff options
author | drochner <drochner@pkgsrc.org> | 2006-12-08 18:47:41 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2006-12-08 18:47:41 +0000 |
commit | 139f6475acf009f12bbf94cbbb329c48a7db5644 (patch) | |
tree | e7c10c1c9e9446e57dd7acbccef581400d02b727 /multimedia/xine-lib/patches | |
parent | 26cad238b7d70478f8b178eeb6c195155c8ed677 (diff) | |
download | pkgsrc-139f6475acf009f12bbf94cbbb329c48a7db5644.tar.gz |
minor cleanup:
-remove obsolete WRKSRC definition
-the http overflow (CVE-2006-2802) was fixed upstream
Diffstat (limited to 'multimedia/xine-lib/patches')
-rw-r--r-- | multimedia/xine-lib/patches/patch-az | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/multimedia/xine-lib/patches/patch-az b/multimedia/xine-lib/patches/patch-az deleted file mode 100644 index 78f95fc1fc9..00000000000 --- a/multimedia/xine-lib/patches/patch-az +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-az,v 1.2 2006/12/08 09:24:26 abs Exp $ - ---- src/input/input_http.c.orig 2006-11-30 10:54:18.000000000 +0000 -+++ src/input/input_http.c -@@ -789,7 +789,8 @@ static int http_plugin_open (input_plugi - while (!done) { - /* fprintf (stderr, "input_http: read...\n"); */ - -- if (_x_io_tcp_read (this->stream, this->fh, &this->buf[len], 1) <= 0) { -+ if (len == sizeof(this->buf) || -+ _x_io_tcp_read (this->stream, this->fh, &this->buf[len], 1) <= 0) { - return -5; - } - |