forked from AuroraMiddleware/gtk
cssvalue: Fix out-of-bounds in array transition code
This commit is contained in:
parent
ebf9e9db42
commit
f77f6f3322
@ -126,8 +126,8 @@ gtk_css_value_array_transition_repeat (GtkCssValue *start,
|
|||||||
|
|
||||||
for (i = 0; i < n; i++)
|
for (i = 0; i < n; i++)
|
||||||
{
|
{
|
||||||
transitions[i] = _gtk_css_value_transition (start->values[i],
|
transitions[i] = _gtk_css_value_transition (start->values[i % start->n_values],
|
||||||
end->values[i],
|
end->values[i % end->n_values],
|
||||||
property_id,
|
property_id,
|
||||||
progress);
|
progress);
|
||||||
if (transitions[i] == NULL)
|
if (transitions[i] == NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user