mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
tools/trasher: Check fseek returns
Fixes CID733726 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c3b6454d80
commit
ca86e91dd6
@ -30,6 +30,15 @@ static uint32_t ran(void)
|
|||||||
return state = state * 1664525 + 1013904223;
|
return state = state * 1664525 + 1013904223;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void checked_seek(FILE *stream, int64_t offset, int whence)
|
||||||
|
{
|
||||||
|
offset = fseek(stream, offset, whence);
|
||||||
|
if (offset < 0) {
|
||||||
|
fprintf(stderr, "seek failed\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
FILE *f;
|
FILE *f;
|
||||||
@ -49,17 +58,14 @@ int main(int argc, char **argv)
|
|||||||
maxburst = atoi(argv[3]);
|
maxburst = atoi(argv[3]);
|
||||||
state = atoi(argv[4]);
|
state = atoi(argv[4]);
|
||||||
|
|
||||||
fseek(f, 0, SEEK_END);
|
checked_seek(f, 0, SEEK_END);
|
||||||
length = ftell(f);
|
length = ftell(f);
|
||||||
fseek(f, 0, SEEK_SET);
|
checked_seek(f, 0, SEEK_SET);
|
||||||
|
|
||||||
while (count--) {
|
while (count--) {
|
||||||
int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX;
|
int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX;
|
||||||
int pos = ran() * (uint64_t) length / UINT32_MAX;
|
int pos = ran() * (uint64_t) length / UINT32_MAX;
|
||||||
if (fseek(f, pos, SEEK_SET) < 0) {
|
checked_seek(f, pos, SEEK_SET);
|
||||||
fprintf(stderr, "seek failed\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (maxburst < 0)
|
if (maxburst < 0)
|
||||||
burst = -maxburst;
|
burst = -maxburst;
|
||||||
|
Loading…
Reference in New Issue
Block a user