Changed: Exit if line is truncated

This commit is contained in:
kervala 2017-01-04 14:24:25 +01:00
parent bcad6f8910
commit fd78d7ca74

View file

@ -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