mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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:
parent
1e7ac41bf8
commit
402cfabc21
@ -1639,13 +1639,13 @@ void FSD_BinaryFile::ReadExtendedString (Standard_IStream& theIStream, TCollecti
|
|||||||
Storage_StreamReadError::Raise();
|
Storage_StreamReadError::Raise();
|
||||||
}
|
}
|
||||||
|
|
||||||
theIStream.read ((char *)c, size*sizeof(Standard_ExtCharacter));
|
const std::streamsize aNbBytes = std::streamsize(sizeof(Standard_ExtCharacter) * size);
|
||||||
|
theIStream.read ((char *)c, aNbBytes);
|
||||||
if (theIStream.gcount() != size)
|
if (theIStream.gcount() != aNbBytes)
|
||||||
{
|
{
|
||||||
Storage_StreamReadError::Raise();
|
Storage_StreamReadError::Raise();
|
||||||
}
|
}
|
||||||
|
|
||||||
c[size] = '\0';
|
c[size] = '\0';
|
||||||
|
|
||||||
#if OCCT_BINARY_FILE_DO_INVERSE
|
#if OCCT_BINARY_FILE_DO_INVERSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user