diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-10-13 10:48:01 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-10-13 10:48:01 +0000 |
commit | 1f5756eb292df5277f6106b4d069c4c5b228b23f (patch) | |
tree | 9667d074a97d78f3e7caf5324e44480d1bf23f30 /multimedia/xine-lib/patches/patch-ab | |
parent | d48e799f323d1ae764691f00ff7af989620aa669 (diff) | |
download | pkgsrc-1f5756eb292df5277f6106b4d069c4c5b228b23f.tar.gz |
Update to 1.0.3a. Man... I hate this package in its actual form... it's
completely unmaintenable.
Changes:
* fixed format string vulnerability in audio CD input plugin
* some build system fixes for Windows
Diffstat (limited to 'multimedia/xine-lib/patches/patch-ab')
-rw-r--r-- | multimedia/xine-lib/patches/patch-ab | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/multimedia/xine-lib/patches/patch-ab b/multimedia/xine-lib/patches/patch-ab index 4b5187aede9..0b5a82a218d 100644 --- a/multimedia/xine-lib/patches/patch-ab +++ b/multimedia/xine-lib/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.2 2004/03/11 17:26:02 jmmv Exp $ +$NetBSD: patch-ab,v 1.3 2005/10/13 10:48:01 jmmv Exp $ ---- src/xine-engine/audio_decoder.c.orig 2003-12-12 20:30:51.000000000 +0100 +--- src/xine-engine/audio_decoder.c.orig 2005-10-08 15:57:49.000000000 +0200 +++ src/xine-engine/audio_decoder.c -@@ -338,7 +338,9 @@ static void *audio_decoder_loop (void *s +@@ -448,7 +448,9 @@ static void *audio_decoder_loop (void *s void _x_audio_decoder_init (xine_stream_t *stream) { pthread_attr_t pth_attrs; @@ -12,7 +12,7 @@ $NetBSD: patch-ab,v 1.2 2004/03/11 17:26:02 jmmv Exp $ int err; if (stream->audio_out == NULL) { -@@ -364,10 +366,12 @@ void _x_audio_decoder_init (xine_stream_ +@@ -486,10 +488,12 @@ void _x_audio_decoder_init (xine_stream_ */ pthread_attr_init(&pth_attrs); @@ -22,6 +22,6 @@ $NetBSD: patch-ab,v 1.2 2004/03/11 17:26:02 jmmv Exp $ pthread_attr_setschedparam(&pth_attrs, &pth_params); pthread_attr_setscope(&pth_attrs, PTHREAD_SCOPE_SYSTEM); +#endif - + + stream->audio_thread_created = 1; if ((err = pthread_create (&stream->audio_thread, - &pth_attrs, audio_decoder_loop, stream)) != 0) { |