mirror of https://github.com/mpv-player/mpv
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
This commit is contained in:
parent
cf082d6a65
commit
fd99631e06
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue