From 27903ae746ed70bad51ba2c00aabdf169adc05d2 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Wed, 11 Feb 2009 18:30:29 +0100 Subject: [PATCH] mark objects without kind as 'undefined' --- lib/as3/registry.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/as3/registry.c b/lib/as3/registry.c index d3b84b6..18b0992 100644 --- a/lib/as3/registry.c +++ b/lib/as3/registry.c @@ -235,6 +235,9 @@ classinfo_t* slotinfo_asclass(slotinfo_t*f) { c->name = "Class"; else if(f->kind == INFOTYPE_SLOT) c->name = "Object"; + else { + c->name = "undefined"; + } dict_init(&c->members,1); c->data = f; -- 1.7.10.4