Bug fix on FreeBSD: Piped input was falsely attributed a small fixed size

这个提交包含在:
Thomas Schmitt 2010-02-16 19:40:07 +00:00
父节点 f5b556db47
当前提交 471a0d0058
共有 2 个文件被更改,包括 4 次插入2 次删除

查看文件

@ -1 +1 @@
#define Cdrskin_timestamP "2010.02.15.125922"
#define Cdrskin_timestamP "2010.02.16.194147"

查看文件

@ -89,7 +89,9 @@ static off_t file_size(struct burn_source *source)
if (fs->fixed_size > 0)
return fs->fixed_size;
if (fstat(fs->datafd, &buf) == -1)
if (fstat(fs->datafd, &buf) != 0)
return (off_t) 0;
if ((buf.st_mode & S_IFMT) != S_IFREG)
return (off_t) 0;
return (off_t) buf.st_size;
}