Merge pull request #3502 from MalcolmTyrrell/fbxTextureFix
Prevent crash with malformed texture referencepull/3501/head^2
commit
25aaa333eb
|
@ -3481,9 +3481,10 @@ void FBXConverter::ConvertOrphanedEmbeddedTextures() {
|
||||||
const char *obtype = key.begin();
|
const char *obtype = key.begin();
|
||||||
const size_t length = static_cast<size_t>(key.end() - key.begin());
|
const size_t length = static_cast<size_t>(key.end() - key.begin());
|
||||||
if (strncmp(obtype, "Texture", length) == 0) {
|
if (strncmp(obtype, "Texture", length) == 0) {
|
||||||
const Texture *texture = static_cast<const Texture *>(object->Get());
|
if (const Texture *texture = static_cast<const Texture *>(object->Get())) {
|
||||||
if (texture->Media() && texture->Media()->ContentLength() > 0) {
|
if (texture->Media() && texture->Media()->ContentLength() > 0) {
|
||||||
realTexture = texture;
|
realTexture = texture;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
|
|
Loading…
Reference in New Issue