Skip to content

Commit

Permalink
Merge pull request assimp#4878 from MMory/f-FixWhitespaceBetweenTagAn…
Browse files Browse the repository at this point in the history
…dNum

Fix assimp#4877
  • Loading branch information
kimkulling authored Jan 17, 2023
2 parents d640a89 + 7f6e967 commit 67eae8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions code/AssetLib/Collada/ColladaParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ void ColladaParser::ReadControllerWeights(XmlNode &node, Collada::Controller &pC
if (text == nullptr) {
throw DeadlyImportError("Out of data while reading <vertex_weights>");
}
SkipSpacesAndLineEnd(&text);
it->first = strtoul10(text, &text);
SkipSpacesAndLineEnd(&text);
if (*text == 0) {
Expand Down

0 comments on commit 67eae8e

Please sign in to comment.