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
d9f4825a
Commit
d9f4825a
authored
Oct 31, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a potential double free on error in qtl/shoutcast demuxers.
parent
b04d7e33
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
modules/demux/playlist/qtl.c
modules/demux/playlist/qtl.c
+1
-0
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+0
-1
No files found.
modules/demux/playlist/qtl.c
View file @
d9f4825a
...
...
@@ -143,6 +143,7 @@ static int Demux( demux_t *p_demux )
msg_Err
(
p_demux
,
"invalid root node %i, %s"
,
xml_ReaderNodeType
(
p_xml_reader
),
psz_eltname
);
free
(
psz_eltname
);
psz_eltname
=
NULL
;
/* second line has <?quicktime tag ... so we try to skip it */
msg_Dbg
(
p_demux
,
"trying to read one more node"
);
...
...
modules/demux/playlist/shoutcast.c
View file @
d9f4825a
...
...
@@ -181,7 +181,6 @@ static int DemuxGenre( demux_t *p_demux, xml_reader_t *p_xml_reader,
{
free
(
psz_attrname
);
free
(
psz_attrvalue
);
free
(
psz_eltname
);
break
;
}
...
...
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