q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a13d8a6020d96ee040e0a434d13c5016730a6267
commit a13d8a6020d96ee040e0a434d13c5016730a6267 Author: Daniel Kolesa <[email protected]> Date: Fri Jul 11 12:02:02 2014 +0100 eolian: fix a segfault --- src/lib/eolian/database_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eolian/database_print.c b/src/lib/eolian/database_print.c index 2d66460..b0435f6 100644 --- a/src/lib/eolian/database_print.c +++ b/src/lib/eolian/database_print.c @@ -34,7 +34,7 @@ _event_print(Eolian_Event *ev, int nb_spaces) eolian_class_event_information_get(ev, &name, &type, &comment); printf("%*s <%s> <", nb_spaces + 5, "", name); - database_type_print((Eolian_Type*)type); + if (type) database_type_print((Eolian_Type*)type); printf("> <%s>\n", comment); } --
