Related: #i124661# crash when loading and re-saving ppt file...
with a single customshape check the equation array element number. If the number is greater than 128, the equation array will not be imported. (cherry picked from commit 48653aa3a1cc24ed9ad8a14ae035b38a751e561d) Conflicts: filter/source/msfilter/msdffimp.cxx Change-Id: I49ac6ec5610a7761ca3ed4905d6fe1bc7ec079d0
This commit is contained in:
committed by
Caolán McNamara
parent
d8c6707b11
commit
b827f6f81f
@@ -2582,7 +2582,7 @@ void ConvertEnhancedCustomShapeEquation( SdrObjCustomShape* pCustoShape,
|
||||
if ( pAny )
|
||||
*pAny >>= sEquationSource;
|
||||
sal_Int32 nEquationSourceCount = sEquationSource.getLength();
|
||||
if ( nEquationSourceCount )
|
||||
if ( nEquationSourceCount && (nEquationSourceCount <= 128) )
|
||||
{
|
||||
sal_Int32 i;
|
||||
for ( i = 0; i < nEquationSourceCount; i++ )
|
||||
|
@@ -1866,20 +1866,22 @@ void DffPropertyReader::ApplyCustomShapeGeometryAttributes( SvStream& rIn, SfxIt
|
||||
sal_uInt16 nElemSize = 8;
|
||||
rIn.ReadUInt16( nNumElem ).ReadUInt16( nNumElemMem ).ReadUInt16( nElemSize );
|
||||
}
|
||||
sal_Int16 nP1, nP2, nP3;
|
||||
sal_uInt16 nFlags;
|
||||
|
||||
uno::Sequence< OUString > aEquations( nNumElem );
|
||||
for ( sal_uInt16 i = 0; i < nNumElem; i++ )
|
||||
if ( nNumElem <= 128 )
|
||||
{
|
||||
rIn.ReadUInt16( nFlags ).ReadInt16( nP1 ).ReadInt16( nP2 ).ReadInt16( nP3 );
|
||||
aEquations[ i ] = EnhancedCustomShape2d::GetEquation( nFlags, nP1, nP2, nP3 );
|
||||
uno::Sequence< OUString > aEquations( nNumElem );
|
||||
for ( sal_uInt16 i = 0; i < nNumElem; i++ )
|
||||
{
|
||||
sal_Int16 nP1(0), nP2(0), nP3(0);
|
||||
sal_uInt16 nFlags(0);
|
||||
rIn.ReadUInt16( nFlags ).ReadInt16( nP1 ).ReadInt16( nP2 ).ReadInt16( nP3 );
|
||||
aEquations[ i ] = EnhancedCustomShape2d::GetEquation( nFlags, nP1, nP2, nP3 );
|
||||
}
|
||||
// pushing the whole Equations element
|
||||
const OUString sEquations( "Equations" );
|
||||
aProp.Name = sEquations;
|
||||
aProp.Value <<= aEquations;
|
||||
aPropVec.push_back( aProp );
|
||||
}
|
||||
// pushing the whole Equations element
|
||||
const OUString sEquations( "Equations" );
|
||||
aProp.Name = sEquations;
|
||||
aProp.Value <<= aEquations;
|
||||
aPropVec.push_back( aProp );
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user