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

coverity#708437 Uninitialized pointer field

Change-Id: I36f766e6b4e098555c8e6e7918f7c952c544670d
üst f1e64562
......@@ -383,7 +383,11 @@ sal_uInt16 SwAttrHandler::SwAttrStack::Pos( const SwTxtAttr& rAttr ) const
* SwAttrHandler::SwAttrHandler()
*************************************************************************/
SwAttrHandler::SwAttrHandler() : mpShell( 0 ), pFnt( 0 ), bVertLayout( false )
SwAttrHandler::SwAttrHandler()
: mpIDocumentSettingAccess(NULL)
, mpShell(NULL)
, pFnt(NULL)
, bVertLayout(false)
{
memset( pDefaultArray, 0, NUM_DEFAULT_VALUES * sizeof(SfxPoolItem*) );
}
......
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