From e6ab88d55270121e01d5ad9e4e9c2cf765a6d960 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 23 Nov 2008 13:57:38 +0000 Subject: [PATCH] added some comments --- lib/as3/pool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/as3/pool.c b/lib/as3/pool.c index 3a7e1df..fc92648 100644 --- a/lib/as3/pool.c +++ b/lib/as3/pool.c @@ -336,12 +336,12 @@ void pool_read(pool_t*pool, TAG*tag) NEW(multiname_t,m); m->type = swf_GetU8(tag); if(m->type==0x07 || m->type==0x0d) { - int namespace_index = swf_GetU30(tag); + int namespace_index = swf_GetU30(tag); // 0 = '*' (any) m->ns = (namespace_t*)array_getvalue(pool->namespaces, namespace_index); int name_index = swf_GetU30(tag); m->name = array_getkey(pool->strings, name_index); } else if(m->type==0x0f || m->type==0x10) { - int name_index = swf_GetU30(tag); + int name_index = swf_GetU30(tag); // 0 = '*' (any name) m->name = array_getkey(pool->strings, name_index); } else if(m->type==0x11 || m->type==0x12) { } else if(m->type==0x09 || m->type==0x0e) { -- 1.7.10.4