FBX: Replace bad pointer casting with memcpy

pull/1480/head
Turo Lamminen 2017-10-07 20:40:35 +03:00
parent 7cbb5f4d3b
commit 9a6b141568
1 changed files with 2 additions and 1 deletions

View File

@ -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;