Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d9b66b48
Commit
d9b66b48
authored
Jul 24, 2015
by
François Cartegnie
🤞
Browse files
demux: adaptative: fix null dereference
parent
6dc58535
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/adaptative/adaptative.cpp
View file @
d9b66b48
...
...
@@ -152,7 +152,7 @@ static int Open(vlc_object_t *p_obj)
static_cast
<
AbstractAdaptationLogic
::
LogicType
>
(
logic
));
}
if
(
!
p_manager
->
start
())
if
(
!
p_manager
||
!
p_manager
->
start
())
{
delete
p_manager
;
return
VLC_EGENERIC
;
...
...
Write
Preview
Supports
Markdown
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