mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/subfile: Merge if into switch()
Found while reviewing CID1452449 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c8200d3825
commit
2a0a7d964b
@ -123,9 +123,9 @@ static int64_t subfile_seek(URLContext *h, int64_t pos, int whence)
|
||||
return end;
|
||||
}
|
||||
|
||||
if (whence == AVSEEK_SIZE)
|
||||
return end - c->start;
|
||||
switch (whence) {
|
||||
case AVSEEK_SIZE:
|
||||
return end - c->start;
|
||||
case SEEK_SET:
|
||||
new_pos = c->start + pos;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user