Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
55e3f943
Commit
55e3f943
authored
Feb 03, 2013
by
Felix Paul Kühne
Browse files
macosx: fixed compilation warning and potential runtime exception
parent
e4dc6784
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/intf.m
View file @
55e3f943
...
...
@@ -404,7 +404,7 @@ static int PLItemChanged(vlc_object_t *p_this, const char *psz_var,
* then -informInputChanged on this non-main thread. */
[
o_plItemChangedLock
lock
];
[[
VLCMain
sharedInstance
]
performSelectorOnMainThread
:
@selector
(
PlaylistItemChanged
)
withObject
:
nil
waitUntilDone
:
YES
];
[[
VLCMain
sharedInstance
]
informInputChanged
];
[[
VLCMain
sharedInstance
]
performSelectorOnMainThread
:
@selector
(
informInputChanged
)
withObject
:
nil
waitUntilDone
:
YES
];
[
o_plItemChangedLock
unlock
];
[
o_pool
release
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment