Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d6aae7ea
Commit
d6aae7ea
authored
Oct 02, 2004
by
hartman
Browse files
* vobsub.c : bail if we cannot find the .sub file
parent
4831edd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/vobsub.c
View file @
d6aae7ea
...
...
@@ -46,7 +46,7 @@ static void Close( vlc_object_t *p_this );
vlc_module_begin
();
set_description
(
_
(
"Vobsub subtitles demux"
)
);
set_capability
(
"demux2"
,
0
);
set_capability
(
"demux2"
,
1
);
set_callbacks
(
Open
,
Close
);
...
...
@@ -180,6 +180,9 @@ static int Open ( vlc_object_t *p_this )
{
msg_Err
(
p_demux
,
"couldn't open .sub Vobsub file: %s"
,
psz_vobname
);
free
(
p_sys
);
free
(
psz_vobname
);
return
VLC_EGENERIC
;
}
free
(
psz_vobname
);
...
...
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