Browse Source

FBX: Replace bad pointer casting with memcpy

Turo Lamminen 8 years ago
parent
commit
9a6b141568
1 changed files with 2 additions and 1 deletions
  1. 2 1
      code/FBXBinaryTokenizer.cpp

+ 2 - 1
code/FBXBinaryTokenizer.cpp

@@ -151,7 +151,8 @@ uint32_t ReadWord(const char* input, const char*& cursor, const char* end)
         TokenizeError("cannot ReadWord, out of bounds",input, cursor);
     }
 
-    uint32_t word = *reinterpret_cast<const uint32_t*>(cursor);
+    uint32_t word;
+    memcpy(&word, cursor, 4);
     AI_SWAP4(word);
 
     cursor += k_to_read;