From bcff50fb72f80145010c38f3cc61c1866fec600d Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Tue, 16 Sep 2014 17:10:22 +0300 Subject: [PATCH] eolian: initialize property type correctly --- src/lib/eolian/eo_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eolian/eo_parser.c b/src/lib/eolian/eo_parser.c index 1140d56..5775110 100644 --- a/src/lib/eolian/eo_parser.c +++ b/src/lib/eolian/eo_parser.c @@ -1325,6 +1325,7 @@ parse_property(Eo_Lexer *ls) has_keys = EINA_FALSE, has_values = EINA_FALSE, has_protected = EINA_FALSE, has_class = EINA_FALSE; prop = calloc(1, sizeof(Eolian_Function)); + prop->type = EOLIAN_UNRESOLVED; prop->base.file = eina_stringshare_ref(ls->filename); prop->base.line = ls->line_number; prop->base.column = ls->column; -- 2.7.4