summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mplayer.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index 185b8547f1..b59623df28 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1303,9 +1303,17 @@ if(stream_dump_type==5){
}
while(!stream->eof){
len=stream_read(stream,buf,4096);
- if(len>0) fwrite(buf,len,1,f);
+ if(len>0) {
+ if(fwrite(buf,len,1,f) != 1) {
+ mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
+ exit_player(MSGTR_Exit_error);
+ }
+ }
+ }
+ if(fclose(f)) {
+ mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
+ exit_player(MSGTR_Exit_error);
}
- fclose(f);
mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
exit_player_with_rc(MSGTR_Exit_eof, 0);
}