search for: e6a38

Displaying 1 result from an estimated 1 matches for "e6a38".

Did you mean: e638
2007 Mar 20
0
2 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_net_stream.c
...New commits: diff-tree 6363187dd9b03c0c32bbce14ba5de298deb3533d (from 759af095e57187bc8de0a3959e27f9032a37c08f) Author: Benjamin Otte <otte@gnome.org> Date: Tue Mar 20 20:58:16 2007 +0100 no more type punned pointers diff --git a/libswfdec/swfdec_bits.c b/libswfdec/swfdec_bits.c index e6a38ed..a90ba96 100644 --- a/libswfdec/swfdec_bits.c +++ b/libswfdec/swfdec_bits.c @@ -336,6 +336,7 @@ swfdec_bits_get_bdouble (SwfdecBits * b) double d; #if G_BYTE_ORDER == G_LITTLE_ENDIAN guint64 tmp; + gpointer p; #endif SWFDEC_BYTES_CHECK (b, 8); @@ -345,7 +346,8 @@ swfdec_bits_get_bdo...