kuuko pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bcff50fb72f80145010c38f3cc61c1866fec600d
commit bcff50fb72f80145010c38f3cc61c1866fec600d Author: Daniel Kolesa <[email protected]> Date: Tue Sep 16 17:10:22 2014 +0300 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; --
