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

ofz#3953 Integer-overflow

Change-Id: Iaf50389680926989170340982337d1e760a2ec3a
Reviewed-on: https://gerrit.libreoffice.org/44120Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 18dc74eb
......@@ -2057,6 +2057,9 @@ void WW8ReaderSave::Restore( SwWW8ImplReader* pRdr )
void SwWW8ImplReader::Read_HdFtFootnoteText( const SwNodeIndex* pSttIdx,
WW8_CP nStartCp, WW8_CP nLen, ManTypes nType )
{
if (nStartCp < 0 || nLen < 0)
return;
// Saves Flags (amongst other things) and resets them
WW8ReaderSave aSave( this );
......
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