Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
fef26f2f
Commit
fef26f2f
authored
Apr 28, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug in input_item_GetTitleFbName (fix #2701)
parent
3ba88058
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/input/item.c
src/input/item.c
+5
-4
No files found.
src/input/item.c
View file @
fef26f2f
...
...
@@ -306,13 +306,14 @@ char *input_item_GetTitleFbName( input_item_t *p_item )
if
(
!
p_item
->
p_meta
)
{
psz_ret
=
p_item
->
psz_name
?
strdup
(
p_item
->
psz_name
)
:
NULL
;
vlc_mutex_unlock
(
&
p_item
->
lock
);
return
NULL
;
return
psz_ret
;
}
const
char
*
psz_
meta
=
vlc_meta_Get
(
p_item
->
p_meta
,
vlc_meta_Title
);
if
(
!
EMPTY_STR
(
psz_
meta
)
)
psz_ret
=
strdup
(
psz_
meta
);
const
char
*
psz_
title
=
vlc_meta_Get
(
p_item
->
p_meta
,
vlc_meta_Title
);
if
(
!
EMPTY_STR
(
psz_
title
)
)
psz_ret
=
strdup
(
psz_
title
);
else
psz_ret
=
p_item
->
psz_name
?
strdup
(
p_item
->
psz_name
)
:
NULL
;
...
...
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