Fix issue #4866 by continuing to resetting read loop after hitting a comment

pull/4899/head
PencilAmazing 2023-01-22 19:51:36 -05:00
parent a9ce8a967d
commit cb8320945d
2 changed files with 3 additions and 2 deletions

View File

@ -308,8 +308,8 @@ bool PLY::Element::ParseElement(IOStreamBuffer<char> &streamBuffer, std::vector<
streamBuffer.getNextLine(buffer);
pCur = (char *)&buffer[0];
// skip all comments
PLY::DOM::SkipComments(buffer);
// skip all comments and go to next line
if (PLY::DOM::SkipComments(buffer)) continue;
PLY::Property prop;
if (!PLY::Property::ParseProperty(buffer, &prop))

View File

@ -2,6 +2,7 @@ ply
format ascii 1.0
comment Created by Blender 2.77 (sub 0) - www.blender.org, source file: ''
element vertex 24
comment Manually added comment line to fix issue #4866
property float x
property float y
property float z