mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
subparse: don't try to index string with -1
If the len of the string turns out to be 0, str[len - 1] resolved to str[-1] which is not a good idea. Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=46543 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2147>
This commit is contained in:
parent
aa121fd120
commit
c2ac57f6c9
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ gst_sub_parse_data_format_autodetect (gchar * match_str)
|
|||
if (sscanf (str, "[%u:%02u.%02u]", &n1, &n2, &n3) == 3 ||
|
||||
sscanf (str, "[%u:%02u.%03u]", &n1, &n2, &n3) == 3) {
|
||||
all_lines_good = TRUE;
|
||||
} else if (str[len - 1] == ']' && strchr (str, ':') != NULL) {
|
||||
} else if (len > 0 && str[len - 1] == ']' && strchr (str, ':') != NULL) {
|
||||
all_lines_good = TRUE;
|
||||
} else {
|
||||
all_lines_good = FALSE;
|
||||
|
|
Loading…
Reference in a new issue