mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-15 20:44:16 +00:00
ttmlparse: Fix potential NULL dereference identified by coverity
Hopefully fixes CID #1405131.
This commit is contained in:
parent
3fbd12b141
commit
98ce1e11bc
1 changed files with 2 additions and 2 deletions
|
@ -734,9 +734,9 @@ ttml_style_set_inherit (TtmlStyleSet * parent, TtmlStyleSet * child)
|
|||
* fontSize based on the parent's fontSize; otherwise, we simply keep
|
||||
* the value defined in the child's style set. */
|
||||
if (g_strcmp0 ((const gchar *) attr_name, "fontSize") == 0
|
||||
&& ttml_style_set_contains_attr (ret, (const gchar *) attr_name)) {
|
||||
&& ttml_style_set_contains_attr (ret, "fontSize")) {
|
||||
const gchar *original_child_font_size =
|
||||
ttml_style_set_get_attr (child, "fontSize");
|
||||
ttml_style_set_get_attr (ret, "fontSize");
|
||||
gchar *scaled_child_font_size =
|
||||
ttml_get_relative_font_size ((const gchar *) attr_value,
|
||||
original_child_font_size);
|
||||
|
|
Loading…
Reference in a new issue