From 5cf810a9d9c98d3bb1f95dd248e03495e22850ff Mon Sep 17 00:00:00 2001 From: amorilia <amorilia@users.sourceforge.net> Date: Sat, 23 Jul 2011 01:02:05 -0700 Subject: [PATCH] Dropping eof check to allow reading multiple nifs from a single stream (suggested by athile). --- src/niflib.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/niflib.cpp b/src/niflib.cpp index 680ce248..3521e2ee 100644 --- a/src/niflib.cpp +++ b/src/niflib.cpp @@ -364,12 +364,6 @@ vector<NiObjectRef> ReadNifList( istream & in, NifInfo * info ) { throw runtime_error( errStream.str() ); } - //This should fail, and trigger the in.eof() flag - ReadByte( in ); - if ( ! in.eof() ) { - throw runtime_error("End of file not reached. This NIF may be corrupt or improperly supported."); - } - #ifdef DEBUG_LINK_PHASE cout << "Link Stack:" << endl; list<unsigned int>::iterator it; -- GitLab