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:
ca5a320
)
changed ABC interface
author
kramm
<kramm>
Sun, 23 Nov 2008 14:01:36 +0000
(14:01 +0000)
committer
kramm
<kramm>
Sun, 23 Nov 2008 14:01:36 +0000
(14:01 +0000)
src/swfdump.c
patch
|
blob
|
history
diff --git
a/src/swfdump.c
b/src/swfdump.c
index
5195ef4
..
a77e413
100644
(file)
--- a/
src/swfdump.c
+++ b/
src/swfdump.c
@@
-1367,7
+1367,9
@@
int main (int argc,char ** argv)
swf_DumpActions(actions, myprefix);
}
else if((tag->id == ST_DOABC || tag->id == ST_RAWABC) && action) {
- swf_ReadABC(tag);
+ void*abccode = swf_ReadABC(tag);
+ swf_DumpABC(stdout, abccode, "");
+ swf_FreeABC(abccode);
}
else if(tag->id == ST_DOINITACTION && action) {
ActionTAG*actions;