diff --git a/Source/ThirdParty/OpenFBX/ofbx.cpp b/Source/ThirdParty/OpenFBX/ofbx.cpp index f3896b5a6..6b6e3d71b 100644 --- a/Source/ThirdParty/OpenFBX/ofbx.cpp +++ b/Source/ThirdParty/OpenFBX/ofbx.cpp @@ -365,7 +365,7 @@ float DataView::toFloat() const bool DataView::operator==(const char* rhs) const { - if (!begin) return false; + if (!begin) return !rhs[0]; const char* c = rhs; const char* c2 = (const char*)begin; while (*c && c2 != (const char*)end)