ce3be8b79d
- Fixed some bugs which caused xine to segfault under certain conditions, and a long-standing issue that would make xine hang with the NPTL implementation in Linux kernel 2.6. - Stabilized core engine and much improved subtitles. - Built-in VCD navigation, XvMC support and better handling of funny filenames. - A security hole regarding the "#save" MRL option has been closed. - Added a feature: append "#save:filename" to an MRL to save the stream during playback. - Lots of bugfixes.
13 lines
419 B
Text
13 lines
419 B
Text
$NetBSD: patch-as,v 1.2 2004/03/11 17:26:02 jmmv Exp $
|
|
|
|
--- src/video_out/video_out_none.c.orig 2003-12-14 23:13:25.000000000 +0100
|
|
+++ src/video_out/video_out_none.c
|
|
@@ -65,6 +65,8 @@ typedef struct {
|
|
|
|
|
|
static void free_framedata(none_frame_t* frame) {
|
|
+ pthread_mutex_init (&frame->vo_frame.mutex, NULL);
|
|
+
|
|
if(frame->vo_frame.base[0]) {
|
|
free(frame->vo_frame.base[0]);
|
|
frame->vo_frame.base[0] = NULL;
|