SH-3798 FIX avatar skins look dull

Wearable parsing error caused last texture in some assets to fail to parse.
Parser now does not throw an error if the wearable does not end in a newline
master
Nyx Linden 2013-02-28 23:32:00 +00:00
parent 96438194cd
commit fa3f91e454
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ BOOL LLWearable::getNextPopulatedLine(std::istream& input_stream, char* buffer,
}
while (input_stream.good() && buffer[0]=='\0');
return input_stream.good();
return (buffer[0] != '\0');
}