Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
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