mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Fix typo
This commit is contained in:
committed by
Oleg Korshul
parent
45828709ee
commit
11121961d9
@ -106,7 +106,7 @@ int MemoryStream::ReadInt32()
|
||||
{
|
||||
int rdInt = 0;
|
||||
|
||||
if (m_Data && (m_Position + sizeof(int) <= m_Size))
|
||||
if (m_Data && (m_Position + sizeof(_INT32) <= m_Size))
|
||||
{
|
||||
rdInt = DocFileFormat::FormatUtils::BytesToInt32 (m_Data, m_Position, m_Size);
|
||||
m_Position += 4;
|
||||
|
||||
Reference in New Issue
Block a user