Kaydet (Commit) e3b1c791 authored tarafından Caolán McNamara's avatar Caolán McNamara

ofz#2977 Timeout

Change-Id: Ib7c00120b97b0d387048a5d8d9d36954e98ffee7
Reviewed-on: https://gerrit.libreoffice.org/44825Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst e94988dd
......@@ -1309,7 +1309,11 @@ bool TIFFReader::ReadTIFF(SvStream & rTIFF, Graphic & rGraphic )
if( DataTypeSize() * nDataLen > 4 )
{
pTIFF->ReadUInt32( nOffset );
pTIFF->Seek(nOrigPos + nOffset);
if (!checkSeek(*pTIFF, nOrigPos + nOffset))
{
bStatus = false;
break;
}
}
ReadTagData( nTagType, nDataLen );
nPos += 12; pTIFF->Seek( nPos );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment