Skip to content

Commit

Permalink
Merge pull request #4534 from tanolino/patch-2
Browse files Browse the repository at this point in the history
Inifinite loop on bad import files
  • Loading branch information
kimkulling committed Jun 21, 2022
2 parents ad2a154 + fff74a4 commit 3f3f4dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/AssetLib/FBX/FBXConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3f3f4dc

Please sign in to comment.