mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Exit if line is truncated
--HG-- branch : develop
This commit is contained in:
parent
5af01c7e24
commit
9541e78219
1 changed files with 6 additions and 0 deletions
|
@ -332,6 +332,12 @@ int main(int argc, char **argv)
|
|||
|
||||
std::string line(buffer);
|
||||
|
||||
if (line.size() > 1022)
|
||||
{
|
||||
nlwarning("More than 1022 bytes on a line!");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (line.size() < 3) continue;
|
||||
|
||||
// texture coordinate
|
||||
|
|
Loading…
Reference in a new issue