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
7fa3a458
Commit
7fa3a458
authored
Dec 17, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check malloc return value.
parent
acb60949
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
modules/access/rtsp/access.c
modules/access/rtsp/access.c
+8
-1
No files found.
modules/access/rtsp/access.c
View file @
7fa3a458
...
@@ -155,7 +155,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -155,7 +155,7 @@ static int Open( vlc_object_t *p_this )
{
{
access_t
*
p_access
=
(
access_t
*
)
p_this
;
access_t
*
p_access
=
(
access_t
*
)
p_this
;
access_sys_t
*
p_sys
;
access_sys_t
*
p_sys
;
char
*
psz_server
=
0
;
char
*
psz_server
=
NULL
;
int
i_result
;
int
i_result
;
if
(
!
p_access
->
psz_access
||
(
if
(
!
p_access
->
psz_access
||
(
...
@@ -177,7 +177,14 @@ static int Open( vlc_object_t *p_this )
...
@@ -177,7 +177,14 @@ static int Open( vlc_object_t *p_this )
p_access
->
info
.
i_title
=
0
;
p_access
->
info
.
i_title
=
0
;
p_access
->
info
.
i_seekpoint
=
0
;
p_access
->
info
.
i_seekpoint
=
0
;
p_access
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
access_sys_t
)
);
p_access
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
access_sys_t
)
);
if
(
!
p_sys
)
return
VLC_ENOMEM
;
p_sys
->
p_rtsp
=
malloc
(
sizeof
(
rtsp_client_t
)
);
p_sys
->
p_rtsp
=
malloc
(
sizeof
(
rtsp_client_t
)
);
if
(
!
p_sys
->
p_rtsp
)
{
free
(
p_sys
);
return
VLC_ENOMEM
;
}
p_sys
->
p_header
=
NULL
;
p_sys
->
p_header
=
NULL
;
p_sys
->
p_rtsp
->
p_userdata
=
p_access
;
p_sys
->
p_rtsp
->
p_userdata
=
p_access
;
...
...
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