From fd99631e06fe3f6090d3782fb451226580c9703c Mon Sep 17 00:00:00 2001 From: gpoirier Date: Sat, 3 Jan 2009 22:33:04 +0000 Subject: 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) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28239 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_macosx.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libvo/vo_macosx.m b/libvo/vo_macosx.m index e9043fc8b4..b049cf080c 100644 --- a/libvo/vo_macosx.m +++ b/libvo/vo_macosx.m @@ -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) -- cgit v1.2.3