OSDN Git Service

action_output_detail の bitstream_close 忘れを修正
authorよや <yoya@awm.jp>
Fri, 24 Jun 2011 06:28:41 +0000 (15:28 +0900)
committerよや <yoya@awm.jp>
Fri, 24 Jun 2011 06:28:41 +0000 (15:28 +0900)
src/swf_tag_action.c

index 56ca9a0..778c993 100644 (file)
@@ -96,6 +96,7 @@ swf_tag_action_output_detail(swf_tag_t *tag, unsigned long *length,
     }
     swf_action_list_build(bs,swf_tag_action->action_list);
     data = bitstream_steal(bs, length);
+    bitstream_close(bs);
     return data;
 }