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

asan: cast is totally wrong here

Change-Id: I7341813b706faad60888e374fa50542abeb6842d
üst 4e590461
......@@ -1272,8 +1272,9 @@ void WW8TabBandDesc::ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* pPar
// sprmTTableBorders
if( nBrcVer == 6 )
{
for( int i = 0; i < 6; ++i )
aDefBrcs[i] = WW8_BRC( ((WW8_BRCVer6*)&pParams)[i] );
WW8_BRCVer6 *pVer6 = (WW8_BRCVer6*)pParams;
for (int i = 0; i < 6; ++i)
aDefBrcs[i] = WW8_BRC(pVer6[i]);
}
else if ( nBrcVer == 8 )
{
......
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