mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 11:39:49 +00:00
avformat/pcmdec: Fix NULL + 1
It is undefined behaviour. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
301ae25e99
commit
b9b0c96db7
@ -57,8 +57,9 @@ static int pcm_read_header(AVFormatContext *s)
|
||||
len = strlen(mime_type);
|
||||
while (options < mime_type + len) {
|
||||
options = strstr(options, ";");
|
||||
if (!options++)
|
||||
if (!options)
|
||||
break;
|
||||
options++;
|
||||
if (!rate)
|
||||
sscanf(options, " rate=%d", &rate);
|
||||
if (!channels)
|
||||
|
Loading…
Reference in New Issue
Block a user