You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
fftools/ffmpeg: Check read() for failure
Fixes: CID1591932 Ignoring number of bytes read
Sponsored-by: Sovereign Tech Fund
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 34fd247c3b
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -306,8 +306,9 @@ static int read_key(void)
|
|||||||
}
|
}
|
||||||
//Read it
|
//Read it
|
||||||
if(nchars != 0) {
|
if(nchars != 0) {
|
||||||
read(0, &ch, 1);
|
if (read(0, &ch, 1) == 1)
|
||||||
return ch;
|
return ch;
|
||||||
|
return 0;
|
||||||
}else{
|
}else{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user