mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 15:23:11 +00:00
tools/ffhash: close file handle on error
Fixes CID1026768 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
de488525e5
commit
c1075d6af7
@ -89,6 +89,7 @@ static int check(char *file)
|
||||
for (;;) {
|
||||
ssize_t size = read(fd, buffer, SIZE);
|
||||
if (size < 0) {
|
||||
close(fd);
|
||||
finish();
|
||||
printf("+READ-FAILED: %s", strerror(errno));
|
||||
ret = 2;
|
||||
|
Loading…
Reference in New Issue
Block a user