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
9e36c6f4
Commit
9e36c6f4
authored
Feb 24, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uninitialized value
parent
47ed2627
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+3
-2
No files found.
modules/demux/playlist/shoutcast.c
View file @
9e36c6f4
...
...
@@ -84,6 +84,7 @@ static int Demux( demux_t *p_demux )
char
*
psz_eltname
=
NULL
;
int
i_ret
=
-
1
;
input_item_t
*
p_current_input
=
GetCurrentItem
(
p_demux
);
input_item_node_t
*
p_input_node
=
NULL
;
p_xml
=
xml_Create
(
p_demux
);
if
(
!
p_xml
)
...
...
@@ -110,7 +111,7 @@ static int Demux( demux_t *p_demux )
goto
error
;
}
input_item_node_t
*
p_input_node
=
input_item_node_Create
(
p_current_input
);
p_input_node
=
input_item_node_Create
(
p_current_input
);
if
(
!
strcmp
(
psz_eltname
,
"genrelist"
)
)
{
...
...
@@ -122,7 +123,7 @@ static int Demux( demux_t *p_demux )
{
/* we're reading a station list */
if
(
DemuxStation
(
p_demux
,
p_xml_reader
,
p_input_node
,
var_
CreateGe
tBool
(
p_demux
,
"shoutcast-show-adult"
)
)
)
var_
Inheri
tBool
(
p_demux
,
"shoutcast-show-adult"
)
)
)
goto
error
;
}
...
...
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