Kaydet (Commit) 34764634 authored tarafından Caolán McNamara's avatar Caolán McNamara Kaydeden (comit) Andras Timar

check SeekToEndOfRecord for success

Change-Id: I7413a4e9e491b65122eaadb38ad574161f1aa943
(cherry picked from commit d417ffb7)
Reviewed-on: https://gerrit.libreoffice.org/18090Reviewed-by: 's avatarMichael Meeks <michael.meeks@collabora.com>
Tested-by: 's avatarMichael Meeks <michael.meeks@collabora.com>
üst deb422e5
...@@ -2880,7 +2880,9 @@ void SdrPowerPointImport::ImportPage( SdrPage* pRet, const PptSlidePersistEntry* ...@@ -2880,7 +2880,9 @@ void SdrPowerPointImport::ImportPage( SdrPage* pRet, const PptSlidePersistEntry*
insertShapeId( nShapeId, pObj ); insertShapeId( nShapeId, pObj );
} }
} }
aShapeHd.SeekToEndOfRecord( rStCtrl ); bool bSuccess = aShapeHd.SeekToEndOfRecord(rStCtrl);
if (!bSuccess)
break;
} }
} }
} }
......
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