Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
15edb457
Commit
15edb457
authored
Mar 13, 2009
by
Fabio Ritrovato
Committed by
Rémi Duraffort
Mar 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix popupSave/Stream deadlock
Signed-off-by:
Rémi Duraffort
<
ivoire@videolan.org
>
parent
bcd90fb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
13 deletions
+11
-13
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+11
-13
No files found.
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
15edb457
...
...
@@ -394,20 +394,18 @@ QStringList PLModel::selectedURIs()
PL_LOCK
;
PLItem
*
item
=
static_cast
<
PLItem
*>
(
current_selection
[
i
].
internalPointer
());
if
(
!
item
)
continue
;
input_item_t
*
p_item
=
NULL
;
if
(
!
p_item
)
continue
;
char
*
psz
=
input_item_GetURI
(
p_item
);
if
(
!
psz
)
continue
;
else
if
(
item
)
{
lst
.
append
(
QString
(
psz
)
);
free
(
psz
);
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
);
if
(
p_item
)
{
char
*
psz
=
input_item_GetURI
(
p_item
->
p_input
);
if
(
psz
)
{
lst
.
append
(
QString
(
psz
)
);
free
(
psz
);
}
}
}
PL_UNLOCK
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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