1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0027522: Foundation Classes, FSD_BinaryFile - incorrect size check in a stream

FSD_BinaryFile::ReadExtendedString() now compares read bytes, not symbols.
This commit is contained in:
kgv 2016-05-27 16:00:05 +03:00 committed by bugmaster
parent 1e7ac41bf8
commit 402cfabc21

View File

@ -1639,9 +1639,9 @@ void FSD_BinaryFile::ReadExtendedString (Standard_IStream& theIStream, TCollecti
Storage_StreamReadError::Raise();
}
theIStream.read ((char *)c, size*sizeof(Standard_ExtCharacter));
if (theIStream.gcount() != size)
const std::streamsize aNbBytes = std::streamsize(sizeof(Standard_ExtCharacter) * size);
theIStream.read ((char *)c, aNbBytes);
if (theIStream.gcount() != aNbBytes)
{
Storage_StreamReadError::Raise();
}