Static analyze: fix "Function call argument is an uninitialized value"

Summary:
Fix clang static analyzer warning.
@fix

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D3046
This commit is contained in:
Mykyta Biliavskyi 2015-09-14 17:45:04 +00:00
parent 17c4e71fc1
commit b542071bb3
1 changed files with 2 additions and 2 deletions

View File

@ -402,12 +402,12 @@ static void
color_slider_layout_set(Evas_Object *ctxpopup)
{
Eina_Array *type_array;
Eina_Stringshare *type;
Eina_Stringshare *type = NULL;
Eina_Array_Iterator itr;
unsigned int i;
const char *color;
char color_rgb_str[3][3] = {{0}};
int color_rgb_val[3];
int color_rgb_val[3] = {0};
color_keyword *selected_color_keyword;
selected_color_keyword = evas_object_data_get(ctxpopup, "color_keyword");