Merge pull request #4534 from tanolino/patch-2

Inifinite loop on bad import files
pull/4585/head^2
Kim Kulling 2022-06-21 14:01:18 +02:00 committed by GitHub
commit 3f3f4dc6b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -3377,6 +3377,10 @@ FBXConverter::KeyFrameListList FBXConverter::GetRotationKeyframeList(const std::
Keys->push_back(tnew);
Values->push_back(vnew);
}
else {
// Something broke
break;
}
tp = tnew;
vp = vnew;
}