evas_filter: initialize was_empty to false to have a defined state

It is used further below in an if clause but might not have been
initialized at that point.

CID: 1374276
This commit is contained in:
Stefan Schmidt 2017-04-26 14:16:14 +02:00
parent 40f30f0f31
commit 24d6d83cf8
1 changed files with 1 additions and 1 deletions

View File

@ -841,7 +841,7 @@ _evas_filter_obscured_regions_set(Evas_Object_Protected_Data *obj, const Eina_Ti
Eina_Rectangle *r;
Evas_Filter_Data *pd;
Eina_Iterator *it;
Eina_Bool was_empty, redraw = EINA_FALSE;
Eina_Bool was_empty = EINA_FALSE, redraw = EINA_FALSE;
int obscured_changes = 0;
int area = 0;