mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
subparse: don't deref a potentially NULL variable
If the html SAMI data is malformed, then retrieving the attribute name may fail. We then cannot retrieve the attribute value. Fixes: https://oss-fuzz.com/testcase-detail/4700130671984640 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2317>
This commit is contained in:
parent
4047653275
commit
0f9f179bec
1 changed files with 4 additions and 0 deletions
|
@ -494,6 +494,10 @@ html_context_handle_element (HtmlContext * ctxt,
|
|||
gchar *attr_name = NULL, *attr_value = NULL;
|
||||
gsize length;
|
||||
next = string_token (next + 1, "=", &attr_name);
|
||||
if (!next) {
|
||||
g_free (attr_name);
|
||||
break;
|
||||
}
|
||||
next = string_token (next + 1, " ", &attr_value);
|
||||
|
||||
/* strip " or ' from attribute value */
|
||||
|
|
Loading…
Reference in a new issue