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
53233be7
Commit
53233be7
authored
Mar 05, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use var_Type to test for the existence of a variable (even more for a void variable).
Should fix #3385
parent
5fd5aaf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/input/var.c
src/input/var.c
+3
-2
No files found.
src/input/var.c
View file @
53233be7
...
...
@@ -359,7 +359,7 @@ void input_ControlVarNavigation( input_thread_t *p_input )
void
input_ControlVarTitle
(
input_thread_t
*
p_input
,
int
i_title
)
{
input_title_t
*
t
=
p_input
->
p
->
title
[
i_title
];
vlc_value_t
val
,
text
;
vlc_value_t
text
;
int
i
;
/* Create/Destroy command variables */
...
...
@@ -368,7 +368,7 @@ void input_ControlVarTitle( input_thread_t *p_input, int i_title )
var_Destroy
(
p_input
,
"next-chapter"
);
var_Destroy
(
p_input
,
"prev-chapter"
);
}
else
if
(
var_
Get
(
p_input
,
"next-chapter"
,
&
val
)
!=
VLC_SUCCESS
)
else
if
(
var_
Type
(
p_input
,
"next-chapter"
)
==
0
)
{
var_Create
(
p_input
,
"next-chapter"
,
VLC_VAR_VOID
);
text
.
psz_string
=
_
(
"Next chapter"
);
...
...
@@ -385,6 +385,7 @@ void input_ControlVarTitle( input_thread_t *p_input, int i_title )
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_CLEARCHOICES
,
NULL
,
NULL
);
for
(
i
=
0
;
i
<
t
->
i_seekpoint
;
i
++
)
{
vlc_value_t
val
;
val
.
i_int
=
i
;
if
(
t
->
seekpoint
[
i
]
->
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