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

Cette révision appartient à :
Thomas Schmitt 2010-02-16 19:40:07 +00:00
Parent f5b556db47
révision 471a0d0058
2 fichiers modifiés avec 4 ajouts et 2 suppressions

Voir le fichier

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

Voir le fichier

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