git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ee97b0
)
mark objects without kind as 'undefined'
author
Matthias Kramm
<kramm@quiss.org>
Wed, 11 Feb 2009 17:30:29 +0000
(18:30 +0100)
committer
Matthias Kramm
<kramm@quiss.org>
Wed, 11 Feb 2009 17:30:29 +0000
(18:30 +0100)
lib/as3/registry.c
patch
|
blob
|
history
diff --git
a/lib/as3/registry.c
b/lib/as3/registry.c
index
d3b84b6
..
18b0992
100644
(file)
--- 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;