fixed getString function in NIF loader

This commit is contained in:
Marc Zinnschlag 2012-11-22 10:35:03 +01:00
parent 9201baebf9
commit d684b3ae11

View file

@ -193,11 +193,12 @@ public:
std::string getString(size_t length) std::string getString(size_t length)
{ {
std::string str; std::vector<char> str (length+1, 0);
str.resize(length);
if(inp->read(&str[0], length) != length) if(inp->read(&str[0], length) != length)
return std::string(); throw std::runtime_error ("string length in NIF file does not match");
return str.substr(0, str.find('\0'));
return &str[0];
} }
std::string getString() std::string getString()
{ {