check for -dumpstream file writes, patch by Eric Lammerts <eric@lammerts.org>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10226 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-05-31 21:50:21 +00:00
parent 9157b3e189
commit ca9eeec2eb
1 changed files with 10 additions and 2 deletions

View File

@ -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);
}