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
d16fe011
Commit
d16fe011
authored
Jan 22, 2011
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XML: fix two small mistakes in Lua
parent
2a3c9b8e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/misc/lua/libs/xml.c
modules/misc/lua/libs/xml.c
+1
-1
share/lua/modules/simplexml.lua
share/lua/modules/simplexml.lua
+1
-1
No files found.
modules/misc/lua/libs/xml.c
View file @
d16fe011
...
...
@@ -140,7 +140,7 @@ static int vlclua_xml_reader_next_attr( lua_State *L )
lua_pushstring
(
L
,
xml_ReaderNextAttr
(
p_reader
,
&
psz_value
)
);
lua_pushstring
(
L
,
psz_value
);
return
1
;
return
2
;
}
void
luaopen_xml
(
lua_State
*
L
)
...
...
share/lua/modules/simplexml.lua
View file @
d16fe011
...
...
@@ -75,7 +75,7 @@ local function parsexml(stream, errormsg)
table.remove
(
parents
)
end
elseif
nodetype
==
3
then
table.insert
(
tree
.
children
,
reader
:
value
()
)
table.insert
(
tree
.
children
,
nodename
)
end
nodetype
,
nodename
=
reader
:
next_node
()
end
...
...
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