mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
gtkcsscalcvalue: avoid unitialized boolean
Since we do an OR afterwards, initializing to FALSE is correct.
This commit is contained in:
parent
40c0a6aa87
commit
11b3efbdda
@ -106,7 +106,7 @@ gtk_css_value_calc_compute (GtkCssValue *value,
|
||||
{
|
||||
GtkCssValue *result;
|
||||
GPtrArray *array;
|
||||
gboolean changed;
|
||||
gboolean changed = FALSE;
|
||||
gsize i;
|
||||
|
||||
array = g_ptr_array_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user