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:
80a79a5
)
fixed big-endian problems.
author
kramm
<kramm>
Sun, 5 Sep 2004 15:57:18 +0000
(15:57 +0000)
committer
kramm
<kramm>
Sun, 5 Sep 2004 15:57:18 +0000
(15:57 +0000)
lib/modules/swfaction.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfaction.c
b/lib/modules/swfaction.c
index
eb876d6
..
83ae836
100644
(file)
--- a/
lib/modules/swfaction.c
+++ b/
lib/modules/swfaction.c
@@
-354,7
+354,7
@@
void swf_DumpActions(ActionTAG*atag, char*prefix)
#endif
} break;
case 'C': {
- poollen = *(U16*)data;
+ poollen = data[0]+256*data[1];
entry = 0;
printf("(%d entries)", poollen);
} break;
@@
-576,7
+576,7
@@
int swf_ActionEnumerate(ActionTAG*atag, char*(*callback)(char*), int type)
}
} break;
case 'C': {
- poollen = (*(U16*)data);
+ poollen = (data[0]+256*data[1]);
} break;
case 'o': {
} break;