Return early when element is TextureFile
In cases where the TextureFile name would start with an integer, `strtoul10` would parse that number and incorrectly set `numOccur` to that number. This caused PLY parsing to fail for vertex positions. Since TextureFile is a single line, and does not have any follow-up lines, it’s okay to return earlypull/1534/head
parent
c666a05e16
commit
2922753589
|
@ -381,6 +381,11 @@ bool PLY::Element::ParseElement(IOStreamBuffer<char> &streamBuffer, std::vector<
|
||||||
{
|
{
|
||||||
char* endPos = &buffer[0] + (strlen(&buffer[0]) - 1);
|
char* endPos = &buffer[0] + (strlen(&buffer[0]) - 1);
|
||||||
pOut->szName = std::string(&buffer[0], endPos);
|
pOut->szName = std::string(&buffer[0], endPos);
|
||||||
|
|
||||||
|
// go to the next line
|
||||||
|
PLY::DOM::SkipSpacesAndLineEnd(buffer);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//parse the number of occurrences of this element
|
//parse the number of occurrences of this element
|
||||||
|
|
Loading…
Reference in New Issue