Skip to content
Snippets Groups Projects
Commit 3ed4046f authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

create temporary file in current directory if it failed in /tmp

Originally committed as revision 4075 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3e0fdf37
No related branches found
No related tags found
No related merge requests found
......@@ -234,6 +234,10 @@ int ff_xvid_encode_init(AVCodecContext *avctx) {
}
strcpy(x->twopassfile, "/tmp/xvidff.XXXXXX");
fd = mkstemp(x->twopassfile);
if(fd < 0){
strcpy(x->twopassfile, "./xvidff.XXXXXX");
fd = mkstemp(x->twopassfile);
}
if( fd == -1 ) {
av_log(avctx, AV_LOG_ERROR,
"XviD: Cannot write 2-pass pipe\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment