Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC
Commits
bb84763e
Commit
bb84763e
authored
Jan 20, 2023
by
Tristan Matthews
Browse files
access: dv: do not log error on ENOMEM
parent
a632b0df
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/dv.c
View file @
bb84763e
...
...
@@ -200,7 +200,6 @@ static int Open( vlc_object_t *p_this )
p_sys
->
p_ev
=
calloc
(
1
,
sizeof
(
*
p_sys
->
p_ev
)
);
if
(
!
p_sys
->
p_ev
)
{
msg_Err
(
p_access
,
"failed to create event thread struct"
);
Close
(
p_this
);
return
VLC_ENOMEM
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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