Commit 8ab0b9ca authored by Michael Niedermayer's avatar Michael Niedermayer

trasher: check seek return value.

Fixes CID733726
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a5e0046a
......@@ -56,7 +56,10 @@ int main(int argc, char **argv)
while (count--) {
int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX;
int pos = ran() * (uint64_t) length / UINT32_MAX;
fseek(f, pos, SEEK_SET);
if (fseek(f, pos, SEEK_SET) < 0) {
fprintf(stderr, "seek failed\n");
return 1;
}
if (maxburst < 0)
burst = -maxburst;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment