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
8f26ca26
Commit
8f26ca26
authored
Aug 14, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xspf: Don't leak input items.
Spotted by thedj with the help of our bugreport ml.
parent
cdb92b0f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
modules/demux/playlist/xspf.c
modules/demux/playlist/xspf.c
+7
-0
No files found.
modules/demux/playlist/xspf.c
View file @
8f26ca26
/*******************************************************************************
/*******************************************************************************
* xspf.c : XSPF playlist import functions
* xspf.c : XSPF playlist import functions
*******************************************************************************
*******************************************************************************
...
@@ -63,6 +64,12 @@ int Import_xspf( vlc_object_t *p_this )
...
@@ -63,6 +64,12 @@ int Import_xspf( vlc_object_t *p_this )
void
Close_xspf
(
vlc_object_t
*
p_this
)
void
Close_xspf
(
vlc_object_t
*
p_this
)
{
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
int
i
;
for
(
i
=
0
;
i
<
p_demux
->
p_sys
->
i_tracklist_entries
;
i
++
)
{
if
(
p_demux
->
p_sys
->
pp_tracklist
[
i
])
vlc_gc_decref
(
p_demux
->
p_sys
->
pp_tracklist
[
i
]
);
}
FREENULL
(
p_demux
->
p_sys
->
pp_tracklist
);
FREENULL
(
p_demux
->
p_sys
->
pp_tracklist
);
FREENULL
(
p_demux
->
p_sys
->
psz_base
);
FREENULL
(
p_demux
->
p_sys
->
psz_base
);
free
(
p_demux
->
p_sys
);
free
(
p_demux
->
p_sys
);
...
...
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