Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e588c1f9
Commit
e588c1f9
authored
Nov 28, 2011
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Nov 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dash: Let the parser handle the root node cleaning.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
5e7910c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
modules/stream_filter/dash/dash.cpp
modules/stream_filter/dash/dash.cpp
+0
-2
modules/stream_filter/dash/xml/DOMParser.cpp
modules/stream_filter/dash/xml/DOMParser.cpp
+1
-0
No files found.
modules/stream_filter/dash/dash.cpp
View file @
e588c1f9
...
...
@@ -125,11 +125,9 @@ static void Close(vlc_object_t *p_obj)
stream_sys_t
*
p_sys
=
(
stream_sys_t
*
)
p_stream
->
p_sys
;
dash
::
DASHManager
*
p_dashManager
=
p_sys
->
p_dashManager
;
dash
::
http
::
HTTPConnectionManager
*
p_conManager
=
p_sys
->
p_conManager
;
dash
::
xml
::
Node
*
p_node
=
p_sys
->
p_node
;
delete
(
p_conManager
);
delete
(
p_dashManager
);
delete
(
p_node
);
free
(
p_sys
);
}
/*****************************************************************************
...
...
modules/stream_filter/dash/xml/DOMParser.cpp
View file @
e588c1f9
...
...
@@ -41,6 +41,7 @@ DOMParser::DOMParser (stream_t *stream) :
DOMParser
::~
DOMParser
()
{
delete
this
->
root
;
if
(
this
->
vlc_reader
)
xml_ReaderDelete
(
this
->
vlc_reader
);
if
(
this
->
vlc_xml
)
...
...
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