elm_code: Fix log test case

An uninitialized variable was causing all the trouble.
Somehow I believe this is not the complete fix, as
grid probably shouldn't be NULL.
This commit is contained in:
Jean-Philippe ANDRE 2016-05-16 18:03:25 +09:00
parent c9ba79af91
commit 828bfb4d27
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ _elm_code_widget_cell_size_get(Elm_Code_Widget *widget, Evas_Coord *width, Evas_
{
Elm_Code_Widget_Data *pd;
Evas_Object *grid;
Evas_Coord w, h;
Evas_Coord w = 0, h = 0;
pd = eo_data_scope_get(widget, ELM_CODE_WIDGET_CLASS);