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
b342028b
Commit
b342028b
authored
May 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
access_New: handle errors
parent
bfd32e70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
src/input/access.c
src/input/access.c
+14
-10
No files found.
src/input/access.c
View file @
b342028b
...
...
@@ -66,9 +66,13 @@ access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
p_access
->
psz_location
=
strdup
(
psz_location
);
p_access
->
psz_filepath
=
get_path
(
psz_location
);
p_access
->
psz_demux
=
strdup
(
psz_demux
);
if
(
p_access
->
psz_access
==
NULL
||
p_access
->
psz_location
==
NULL
||
p_access
->
psz_demux
==
NULL
)
goto
error
;
msg_Dbg
(
p_obj
,
"creating access '%s' location='%s', path='%s'"
,
psz_access
,
psz_location
,
p_access
->
psz_filepath
);
psz_access
,
psz_location
,
p_access
->
psz_filepath
?
p_access
->
psz_filepath
:
"(null)"
);
p_access
->
pf_read
=
NULL
;
p_access
->
pf_block
=
NULL
;
...
...
@@ -82,18 +86,18 @@ access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
vlc_object_attach
(
p_access
,
p_obj
);
p_access
->
p_module
=
module_need
(
p_access
,
"access"
,
psz_access
,
true
);
if
(
p_access
->
p_module
==
NULL
)
{
free
(
p_access
->
psz_access
);
free
(
p_access
->
psz_location
);
free
(
p_access
->
psz_filepath
);
free
(
p_access
->
psz_demux
);
vlc_object_release
(
p_access
);
return
NULL
;
}
goto
error
;
return
p_access
;
error:
free
(
p_access
->
psz_access
);
free
(
p_access
->
psz_location
);
free
(
p_access
->
psz_filepath
);
free
(
p_access
->
psz_demux
);
vlc_object_release
(
p_access
);
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