Skip to content
Snippets Groups Projects
Commit ddaf33f5 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

ffprobe: fix consistency checks in parse_read_intervals()

Move array size assert after the count increment, and avoid strchr() NULL
dereference on p.

Should fix FFmpeg coverity issue #1108581.
parent 09ba986c
No related branches found
No related tags found
No related merge requests found
......@@ -2460,8 +2460,11 @@ static int parse_read_intervals(const char *intervals_spec)
/* parse intervals */
p = spec;
for (i = 0; i < n; i++) {
char *next = strchr(p, ',');
for (i = 0; p; i++) {
char *next;
av_assert0(i < read_intervals_nb);
next = strchr(p, ',');
if (next)
*next++ = 0;
......@@ -2475,7 +2478,6 @@ static int parse_read_intervals(const char *intervals_spec)
av_log(NULL, AV_LOG_VERBOSE, "Parsed log interval ");
log_read_interval(&read_intervals[i], NULL, AV_LOG_VERBOSE);
p = next;
av_assert0(i <= read_intervals_nb);
}
av_assert0(i == read_intervals_nb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment