mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02: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…
x
Reference in New Issue
Block a user