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
0621dd1e
Commit
0621dd1e
authored
Feb 12, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't leak memory in error paths
parent
4f28199b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
modules/demux/live555.cpp
modules/demux/live555.cpp
+20
-2
No files found.
modules/demux/live555.cpp
View file @
0621dd1e
...
@@ -309,11 +309,15 @@ static int Open ( vlc_object_t *p_this )
...
@@ -309,11 +309,15 @@ static int Open ( vlc_object_t *p_this )
i_sdp_max
-
i_sdp
-
1
);
i_sdp_max
-
i_sdp
-
1
);
if
(
p_demux
->
b_die
||
p_demux
->
b_error
)
if
(
p_demux
->
b_die
||
p_demux
->
b_error
)
{
free
(
p_sdp
);
goto
error
;
goto
error
;
}
if
(
i_read
<
0
)
if
(
i_read
<
0
)
{
{
msg_Err
(
p_demux
,
"failed to read SDP"
);
msg_Err
(
p_demux
,
"failed to read SDP"
);
free
(
p_sdp
);
goto
error
;
goto
error
;
}
}
...
@@ -627,6 +631,12 @@ static int SessionsSetup( demux_t *p_demux )
...
@@ -627,6 +631,12 @@ static int SessionsSetup( demux_t *p_demux )
Boolean
bInit
;
Boolean
bInit
;
live_track_t
*
tk
;
live_track_t
*
tk
;
if
(
p_demux
->
b_die
||
p_demux
->
b_error
)
{
delete
iter
;
return
VLC_EGENERIC
;
}
/* Value taken from mplayer */
/* Value taken from mplayer */
if
(
!
strcmp
(
sub
->
mediumName
(),
"audio"
)
)
if
(
!
strcmp
(
sub
->
mediumName
(),
"audio"
)
)
i_buffer
=
100000
;
i_buffer
=
100000
;
...
@@ -701,7 +711,11 @@ static int SessionsSetup( demux_t *p_demux )
...
@@ -701,7 +711,11 @@ static int SessionsSetup( demux_t *p_demux )
}
}
tk
=
(
live_track_t
*
)
malloc
(
sizeof
(
live_track_t
)
);
tk
=
(
live_track_t
*
)
malloc
(
sizeof
(
live_track_t
)
);
if
(
!
tk
)
return
VLC_ENOMEM
;
if
(
!
tk
)
{
delete
iter
;
return
VLC_ENOMEM
;
}
tk
->
p_demux
=
p_demux
;
tk
->
p_demux
=
p_demux
;
tk
->
sub
=
sub
;
tk
->
sub
=
sub
;
tk
->
p_es
=
NULL
;
tk
->
p_es
=
NULL
;
...
@@ -714,7 +728,11 @@ static int SessionsSetup( demux_t *p_demux )
...
@@ -714,7 +728,11 @@ static int SessionsSetup( demux_t *p_demux )
tk
->
i_pts
=
0
;
tk
->
i_pts
=
0
;
tk
->
i_buffer
=
65536
;
tk
->
i_buffer
=
65536
;
tk
->
p_buffer
=
(
uint8_t
*
)
malloc
(
65536
);
tk
->
p_buffer
=
(
uint8_t
*
)
malloc
(
65536
);
if
(
!
tk
->
p_buffer
)
return
VLC_ENOMEM
;
if
(
!
tk
->
p_buffer
)
{
delete
iter
;
return
VLC_ENOMEM
;
}
/* Value taken from mplayer */
/* Value taken from mplayer */
if
(
!
strcmp
(
sub
->
mediumName
(),
"audio"
)
)
if
(
!
strcmp
(
sub
->
mediumName
(),
"audio"
)
)
...
...
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