Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
45fee8ed
Commit
45fee8ed
authored
Jul 08, 2008
by
Pierre d'Herbemont
Browse files
macosx: Yet an other locking typo.
parent
adec5472
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/playlist.m
View file @
45fee8ed
...
...
@@ -970,6 +970,7 @@
int
i_item
;
playlist_t
*
p_playlist
=
pl_Yield
(
VLCIntf
);
PL_LOCK
;
for
(
i_item
=
0
;
i_item
<
(
int
)[
o_array
count
];
i_item
++
)
{
input_item_t
*
p_input
;
...
...
@@ -985,9 +986,10 @@
/* Add the item */
/* FIXME: playlist_AddInput() can fail */
playlist_AddInput
(
p_playlist
,
p_input
,
PLAYLIST_INSERT
,
i_position
==
-
1
?
PLAYLIST_END
:
i_position
+
i_item
,
true
,
fals
e
);
tru
e
);
if
(
i_item
==
0
&&
!
b_enqueue
)
{
...
...
@@ -997,6 +999,8 @@
}
vlc_gc_decref
(
p_input
);
}
PL_UNLOCK
;
[
self
playlistUpdated
];
vlc_object_release
(
p_playlist
);
}
...
...
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