Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
301cde4d
Commit
301cde4d
authored
Aug 09, 2001
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a memory leak in the ifo parser and input_EndStream
parent
3007c6b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
18 deletions
+33
-18
plugins/dvd/dvd_ifo.c
plugins/dvd/dvd_ifo.c
+20
-13
plugins/dvd/dvd_netlist.c
plugins/dvd/dvd_netlist.c
+4
-3
plugins/dvd/input_dvd.c
plugins/dvd/input_dvd.c
+2
-1
src/input/input_programs.c
src/input/input_programs.c
+7
-1
No files found.
plugins/dvd/dvd_ifo.c
View file @
301cde4d
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* dvd_ifo.c: Functions for ifo parsing
* dvd_ifo.c: Functions for ifo parsing
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: dvd_ifo.c,v 1.3
6 2001/08/06 13:28:00 sam
Exp $
* $Id: dvd_ifo.c,v 1.3
7 2001/08/09 20:16:17 jlj
Exp $
*
*
* Authors: Stphane Borel <stef@via.ecp.fr>
* Authors: Stphane Borel <stef@via.ecp.fr>
* German Tischler <tanis@gaspode.franken.de>
* German Tischler <tanis@gaspode.franken.de>
...
@@ -1145,21 +1145,21 @@ static int FreeTitle( title_t * p_title )
...
@@ -1145,21 +1145,21 @@ static int FreeTitle( title_t * p_title )
{
{
free
(
p_title
->
command
.
p_cell_command
);
free
(
p_title
->
command
.
p_cell_command
);
}
}
}
if
(
p_title
->
i_chapter_map_start_byte
)
if
(
p_title
->
i_chapter_map_start_byte
)
{
{
free
(
p_title
->
chapter_map
.
pi_start_cell
);
free
(
p_title
->
chapter_map
.
pi_start_cell
);
}
}
if
(
p_title
->
i_cell_play_start_byte
)
if
(
p_title
->
i_cell_play_start_byte
)
{
{
free
(
p_title
->
p_cell_play
);
free
(
p_title
->
p_cell_play
);
}
}
if
(
p_title
->
i_cell_pos_start_byte
)
if
(
p_title
->
i_cell_pos_start_byte
)
{
{
free
(
p_title
->
p_cell_pos
);
free
(
p_title
->
p_cell_pos
);
}
}
}
return
0
;
return
0
;
...
@@ -1221,8 +1221,15 @@ static int ReadUnitInf( ifo_t * p_ifo, unit_inf_t * p_unit_inf,
...
@@ -1221,8 +1221,15 @@ static int ReadUnitInf( ifo_t * p_ifo, unit_inf_t * p_unit_inf,
*****************************************************************************/
*****************************************************************************/
static
int
FreeUnitInf
(
unit_inf_t
*
p_unit_inf
)
static
int
FreeUnitInf
(
unit_inf_t
*
p_unit_inf
)
{
{
int
i
;
if
(
p_unit_inf
->
p_title
!=
NULL
)
if
(
p_unit_inf
->
p_title
!=
NULL
)
{
{
for
(
i
=
0
;
i
<
p_unit_inf
->
i_title_nb
;
i
++
)
{
FreeTitle
(
&
p_unit_inf
->
p_title
[
i
].
title
);
}
free
(
p_unit_inf
->
p_title
);
free
(
p_unit_inf
->
p_title
);
}
}
...
...
plugins/dvd/dvd_netlist.c
View file @
301cde4d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* will only be given back to netlist when refcount is zero.
* will only be given back to netlist when refcount is zero.
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998, 1999, 2000, 2001 VideoLAN
* Copyright (C) 1998, 1999, 2000, 2001 VideoLAN
* $Id: dvd_netlist.c,v 1.1
3 2001/07/30 00:53:05 sam
Exp $
* $Id: dvd_netlist.c,v 1.1
4 2001/08/09 20:16:17 jlj
Exp $
*
*
* Authors: Henri Fallon <henri@videolan.org>
* Authors: Henri Fallon <henri@videolan.org>
* Stphane Borel <stef@videolan.org>
* Stphane Borel <stef@videolan.org>
...
@@ -585,9 +585,10 @@ void DVDNetlistEnd( dvd_netlist_t * p_netlist )
...
@@ -585,9 +585,10 @@ void DVDNetlistEnd( dvd_netlist_t * p_netlist )
vlc_mutex_destroy
(
&
p_netlist
->
lock
);
vlc_mutex_destroy
(
&
p_netlist
->
lock
);
/* free the FIFO, the buffer, and the netlist structure */
/* free the FIFO, the buffer, and the netlist structure */
free
(
p_netlist
->
pp_free_data
);
free
(
p_netlist
->
pp_free_pes
);
free
(
p_netlist
->
pi_refcount
);
free
(
p_netlist
->
pi_refcount
);
free
(
p_netlist
->
p_free_iovec
);
free
(
p_netlist
->
pp_free_pes
);
free
(
p_netlist
->
pp_free_data
);
free
(
p_netlist
->
p_pes
);
free
(
p_netlist
->
p_pes
);
free
(
p_netlist
->
p_data
);
free
(
p_netlist
->
p_data
);
free
(
p_netlist
->
p_buffers
);
free
(
p_netlist
->
p_buffers
);
...
...
plugins/dvd/input_dvd.c
View file @
301cde4d
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* -dvd_udf to find files
* -dvd_udf to find files
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_dvd.c,v 1.8
4 2001/08/06 13:28:00 sam
Exp $
* $Id: input_dvd.c,v 1.8
5 2001/08/09 20:16:17 jlj
Exp $
*
*
* Author: Stphane Borel <stef@via.ecp.fr>
* Author: Stphane Borel <stef@via.ecp.fr>
*
*
...
@@ -514,6 +514,7 @@ static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
...
@@ -514,6 +514,7 @@ static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
input_UnselectES
(
p_input
,
p_input
->
stream
.
pp_selected_es
[
i
]
);
input_UnselectES
(
p_input
,
p_input
->
stream
.
pp_selected_es
[
i
]
);
}
}
free
(
p_input
->
stream
.
pp_selected_es
);
input_DelProgram
(
p_input
,
p_input
->
stream
.
pp_programs
[
0
]
);
input_DelProgram
(
p_input
,
p_input
->
stream
.
pp_programs
[
0
]
);
p_input
->
stream
.
pp_selected_es
=
NULL
;
p_input
->
stream
.
pp_selected_es
=
NULL
;
...
...
src/input/input_programs.c
View file @
301cde4d
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input_programs.c,v 1.6
0 2001/07/17 09:48:08 massiot
Exp $
* $Id: input_programs.c,v 1.6
1 2001/08/09 20:16:17 jlj
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -104,6 +104,12 @@ void input_EndStream( input_thread_t * p_input )
...
@@ -104,6 +104,12 @@ void input_EndStream( input_thread_t * p_input )
input_DelArea
(
p_input
,
p_input
->
stream
.
pp_areas
[
0
]
);
input_DelArea
(
p_input
,
p_input
->
stream
.
pp_areas
[
0
]
);
}
}
/* Free selected ES */
if
(
p_input
->
stream
.
pp_selected_es
!=
NULL
)
{
free
(
p_input
->
stream
.
pp_selected_es
);
}
if
(
p_input
->
stream
.
p_demux_data
!=
NULL
)
if
(
p_input
->
stream
.
p_demux_data
!=
NULL
)
{
{
free
(
p_input
->
stream
.
p_demux_data
);
free
(
p_input
->
stream
.
p_demux_data
);
...
...
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