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
81c68015
Commit
81c68015
authored
May 31, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix CID 103: resource leak in EsOutAdd and check malloc return values.
parent
222d90e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/input/es_out.c
src/input/es_out.c
+11
-0
No files found.
src/input/es_out.c
View file @
81c68015
...
@@ -183,6 +183,13 @@ es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
...
@@ -183,6 +183,13 @@ es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
vlc_value_t
val
;
vlc_value_t
val
;
int
i
;
int
i
;
if
(
!
out
)
return
NULL
;
if
(
!
p_sys
)
{
free
(
out
);
return
NULL
;
}
out
->
pf_add
=
EsOutAdd
;
out
->
pf_add
=
EsOutAdd
;
out
->
pf_send
=
EsOutSend
;
out
->
pf_send
=
EsOutSend
;
out
->
pf_del
=
EsOutDel
;
out
->
pf_del
=
EsOutDel
;
...
@@ -570,6 +577,7 @@ static es_out_pgrm_t *EsOutProgramAdd( es_out_t *out, int i_group )
...
@@ -570,6 +577,7 @@ static es_out_pgrm_t *EsOutProgramAdd( es_out_t *out, int i_group )
vlc_value_t
val
;
vlc_value_t
val
;
es_out_pgrm_t
*
p_pgrm
=
malloc
(
sizeof
(
es_out_pgrm_t
)
);
es_out_pgrm_t
*
p_pgrm
=
malloc
(
sizeof
(
es_out_pgrm_t
)
);
if
(
!
p_pgrm
)
return
NULL
;
/* Init */
/* Init */
p_pgrm
->
i_id
=
i_group
;
p_pgrm
->
i_id
=
i_group
;
...
@@ -889,9 +897,12 @@ static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt )
...
@@ -889,9 +897,12 @@ static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt )
es_out_pgrm_t
*
p_pgrm
=
NULL
;
es_out_pgrm_t
*
p_pgrm
=
NULL
;
int
i
;
int
i
;
if
(
!
es
)
return
NULL
;
if
(
fmt
->
i_group
<
0
)
if
(
fmt
->
i_group
<
0
)
{
{
msg_Err
(
p_input
,
"invalid group number"
);
msg_Err
(
p_input
,
"invalid group number"
);
free
(
es
);
return
NULL
;
return
NULL
;
}
}
...
...
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