[MPlayer-cvslog] r28239 - trunk/libvo/vo_macosx.m

gpoirier subversion at mplayerhq.hu
Sat Jan 3 23:33:05 CET 2009


Author: gpoirier
Date: Sat Jan  3 23:33:04 2009
New Revision: 28239

Log:
Fix deinit problem due to r28215
original thread:
date: Fri, Jan 2, 2009 at 10:00 PM
subject: [PATCH] Fix deinit problem due to r28215 (was Re: [MPlayer-cvslog] r28215 - in trunk: DOCS/man/en/mplayer.1 libvo/vo_macosx.m)

Modified:
   trunk/libvo/vo_macosx.m

Modified: trunk/libvo/vo_macosx.m
==============================================================================
--- trunk/libvo/vo_macosx.m	Sat Jan  3 03:15:07 2009	(r28238)
+++ trunk/libvo/vo_macosx.m	Sat Jan  3 23:33:04 2009	(r28239)
@@ -337,7 +337,7 @@ static int preinit(const char *arg)
 	// set defaults
 	screen_id = 0;
 	shared_buffer = false;
-	buffer_name = DEFAULT_BUFFER_NAME;
+	buffer_name = NULL;
 	
 	if (subopt_parse(arg, subopts) != 0) {
 		mp_msg(MSGT_VO, MSGL_FATAL,
@@ -361,7 +361,9 @@ static int preinit(const char *arg)
 	NSApp = [NSApplication sharedApplication];
 	isLeopardOrLater = floor(NSAppKitVersionNumber) > 824;
 	
-	if (strcmp(buffer_name, DEFAULT_BUFFER_NAME))
+	if (!buffer_name)
+		buffer_name = strdup(DEFAULT_BUFFER_NAME);
+	else
 		shared_buffer = true;
 	
 	if(!shared_buffer)



More information about the MPlayer-cvslog mailing list