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
afe8f372
Commit
afe8f372
authored
Jul 31, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
podcast: fix typo and remove unused p_sys member.
parent
11164567
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
modules/demux/playlist/podcast.c
modules/demux/playlist/podcast.c
+1
-4
No files found.
modules/demux/playlist/podcast.c
View file @
afe8f372
...
...
@@ -36,7 +36,6 @@
struct
demux_sys_t
{
char
*
psz_prefix
;
xml_t
*
p_xml
;
xml_reader_t
*
p_xml_reader
;
};
...
...
@@ -59,7 +58,6 @@ int Import_podcast( vlc_object_t *p_this )
return
VLC_EGENERIC
;
STANDARD_DEMUX_INIT_MSG
(
"using podcast reader"
);
p_demux
->
p_sys
->
psz_prefix
=
FindPrefix
(
p_demux
);
p_demux
->
p_sys
->
p_xml
=
NULL
;
p_demux
->
p_sys
->
p_xml_reader
=
NULL
;
...
...
@@ -74,7 +72,6 @@ void Close_podcast( vlc_object_t *p_this )
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
free
(
p_sys
->
psz_prefix
);
if
(
p_sys
->
p_xml_reader
)
xml_ReaderDelete
(
p_sys
->
p_xml
,
p_sys
->
p_xml_reader
);
if
(
p_sys
->
p_xml
)
xml_Delete
(
p_sys
->
p_xml
);
free
(
p_sys
);
...
...
@@ -171,7 +168,7 @@ static int Demux( demux_t *p_demux )
}
else
if
(
!
strcmp
(
psz_elname
,
"image"
)
)
{
b_i
tem
=
true
;
b_i
mage
=
true
;
}
// Read the attributes
...
...
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