mirror of https://git.ffmpeg.org/ffmpeg.git
fate/api-h264-slice-test: don't use ssize_t
Fixes ticket #7521 Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
66425add27
commit
8096f52049
|
@ -180,15 +180,12 @@ int main(int argc, char **argv)
|
|||
|
||||
while(1) {
|
||||
uint16_t size = 0;
|
||||
ssize_t ret = fread(&size, 1, sizeof(uint16_t), fd);
|
||||
if (ret < 0) {
|
||||
perror("Couldn't read size");
|
||||
exit(1);
|
||||
} else if (ret != sizeof(uint16_t))
|
||||
size_t ret = fread(&size, 1, sizeof(uint16_t), fd);
|
||||
if (ret != sizeof(uint16_t))
|
||||
break;
|
||||
size = ntohs(size);
|
||||
ret = fread(p, 1, size, fd);
|
||||
if (ret < 0 || ret != size) {
|
||||
if (ret != size) {
|
||||
perror("Couldn't read data");
|
||||
exit(1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue