Added checks for bad input files

[SVN r21321]
This commit is contained in:
John Maddock
2003-12-18 11:53:47 +00:00
parent 39f1fb4d17
commit be01708af3
10 changed files with 10 additions and 0 deletions

View File

@ -41,6 +41,7 @@ extern const char* footer_text;
void load_file(std::string& s, std::istream& is)
{
s.erase();
if(is.bad()) return;
s.reserve(is.rdbuf()->in_avail());
char c;
while(is.get(c))