mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 01:00:28 +00:00
cssvalue: Move value initialization
Makes it easier to track places where tha value is not initialized.
This commit is contained in:
parent
b60478bb49
commit
301e22121a
@ -153,7 +153,6 @@ _gtk_css_color_value_resolve (GtkCssValue *color,
|
||||
dependencies = &unused;
|
||||
*dependencies = 0;
|
||||
|
||||
value = NULL;
|
||||
switch (color->type)
|
||||
{
|
||||
case COLOR_TYPE_LITERAL:
|
||||
@ -265,6 +264,7 @@ _gtk_css_color_value_resolve (GtkCssValue *color,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
value = NULL;
|
||||
g_assert_not_reached ();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user