fix overflow
parent
e6b8ae44cb
commit
2391432523
|
@ -1538,9 +1538,9 @@ void ColladaLoader::AddTexture(aiMaterial &mat,
|
||||||
map = sampler.mUVId;
|
map = sampler.mUVId;
|
||||||
} else {
|
} else {
|
||||||
map = -1;
|
map = -1;
|
||||||
for (auto it : sampler.mUVChannel) {
|
for (std::string::const_iterator it = sampler.mUVChannel.begin(); it != sampler.mUVChannel.end(); ++it) {
|
||||||
if (IsNumeric(it)) {
|
if (IsNumeric(*it)) {
|
||||||
map = strtoul10(&it);
|
map = strtoul10(&(*it));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue