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
7825383f
Commit
7825383f
authored
Aug 18, 2005
by
Christophe Massiot
Browse files
* modules/demux/demuxdump.c: Better error detection (disk full for instance).
parent
2a03eac5
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/demuxdump.c
View file @
7825383f
...
...
@@ -173,7 +173,7 @@ static int Demux( demux_t *p_demux )
i_data
=
fwrite
(
p_sys
->
buffer
,
1
,
i_data
,
p_sys
->
p_file
);
if
(
i_data
<
0
)
if
(
i_data
==
0
)
{
msg_Err
(
p_demux
,
"failed to write data"
);
return
-
1
;
...
...
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