Explorar el Código

Merge pull request #410 from Dmitry-Me/assertForFTellReturn

Assert to ensure ftell() behaves as expected by later code
Lee Thomason hace 10 años
padre
commit
c8dad95d44
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      tinyxml2.cpp

+ 1 - 0
tinyxml2.cpp

@@ -1954,6 +1954,7 @@ XMLError XMLDocument::LoadFile( FILE* fp )
         SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 );
         SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 );
         return _errorID;
         return _errorID;
     }
     }
+    TIXMLASSERT( filelength >= 0 );
 
 
     if ( !LongFitsIntoSizeTMinusOne<>::Fits( filelength ) ) {
     if ( !LongFitsIntoSizeTMinusOne<>::Fits( filelength ) ) {
         // Cannot handle files which won't fit in buffer together with null terminator
         // Cannot handle files which won't fit in buffer together with null terminator