summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Kramm <kramm@quiss.org>2011-10-25 13:02:20 -0700
committerMatthias Kramm <kramm@quiss.org>2011-10-25 13:02:20 -0700
commite3a29eb1b88e9d6d4bc2b3e2844c4ba8581dba22 (patch)
tree58dab3559316e734680831b2e95d2b5eae3935e5
parent47be628b3d678b66dde2d02f0cd923143753336d (diff)
fixed bug in swfstrings
-rw-r--r--src/swfstrings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/swfstrings.c b/src/swfstrings.c
index f2882766..c71d9142 100644
--- a/src/swfstrings.c
+++ b/src/swfstrings.c
@@ -208,7 +208,7 @@ int main (int argc,char ** argv)
if(!h) h = (swf.movieSize.ymax - swf.movieSize.ymin) / 20;
}
- id2tag = malloc(sizeof(TAG)*65536);
+ id2tag = rfx_calloc(sizeof(TAG)*65536);
fontnum = 0;
swf_FontEnumerate(&swf,&fontcallback1, 0);