svnno****@sourc*****
svnno****@sourc*****
2011年 3月 22日 (火) 17:08:13 JST
Revision: 442 http://sourceforge.jp/projects/swfed/svn/view?view=rev&revision=442 Author: yoya Date: 2011-03-22 17:08:13 +0900 (Tue, 22 Mar 2011) Log Message: ----------- author: yoya replace_movieclip の先頭で宣言している変数の NULL 初期化 Modified Paths: -------------- trunk/src/swf_object.c -------------- next part -------------- Modified: trunk/src/swf_object.c =================================================================== --- trunk/src/swf_object.c 2011-03-22 07:54:48 UTC (rev 441) +++ trunk/src/swf_object.c 2011-03-22 08:08:13 UTC (rev 442) @@ -1017,12 +1017,12 @@ swf_object_t *swf4sprite = NULL; swf_tag_info_t *tag_info = NULL; swf_tag_detail_handler_t *detail_handler = NULL; - trans_table_t *cid_trans_table; + trans_table_t *cid_trans_table = NULL; #ifdef SWF_OBJECT_UNUSED_CID_PURGE - trans_table_t *orig_sprite_refcid_trans_table; + trans_table_t *orig_sprite_refcid_trans_table = NULL; #endif // SWF_OBJECT_UNUSED_CID_PURGE #ifdef SWF_OBJECT_DEPTH_RENUMBER - trans_table_t *depth_trans_table; + trans_table_t *depth_trans_table = NULL; #endif // SWF_OBJECT_DEPTH_RENUMBER if (swf == NULL) { fprintf(stderr, "swf_object_replace_movieclip: swf == NULL\n");