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
114a88bc
Commit
114a88bc
authored
May 14, 2012
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
luasd: fix parsing of input options
This is just a partial fix. Fixes #6148
parent
ca0c548c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/lua/libs/sd.c
modules/lua/libs/sd.c
+1
-1
No files found.
modules/lua/libs/sd.c
View file @
114a88bc
...
...
@@ -224,8 +224,8 @@ static int vlclua_sd_add_item( lua_State *L )
int
i_options
=
0
;
const
char
*
psz_path
=
lua_tostring
(
L
,
-
1
);
vlclua_read_options
(
p_sd
,
L
,
&
i_options
,
&
ppsz_options
);
lua_pop
(
L
,
1
);
vlclua_read_options
(
p_sd
,
L
,
&
i_options
,
&
ppsz_options
);
lua_getfield
(
L
,
-
1
,
"title"
);
const
char
*
psz_title
=
luaL_checkstring
(
L
,
-
1
)
?
luaL_checkstring
(
L
,
-
1
)
:
psz_path
;
input_item_t
*
p_input
=
input_item_NewExt
(
psz_path
,
psz_title
,
...
...
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