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

coverity#708153 Uninitialized scalar field

Change-Id: Ifd4e3f792a01d0f806b9d49355463eae79b877ab
üst c9bb64be
...@@ -63,9 +63,11 @@ static HTMLOptionEnum const aAreaShapeOptEnums[] = ...@@ -63,9 +63,11 @@ static HTMLOptionEnum const aAreaShapeOptEnums[] =
}; };
SfxHTMLParser::SfxHTMLParser( SvStream& rStream, sal_Bool bIsNewDoc, SfxHTMLParser::SfxHTMLParser( SvStream& rStream, sal_Bool bIsNewDoc,
SfxMedium *pMed ) : SfxMedium *pMed )
HTMLParser( rStream, bIsNewDoc ), : HTMLParser(rStream, bIsNewDoc)
pMedium( pMed ), pDLMedium( 0 ) , pMedium(pMed)
, pDLMedium(0)
, eScriptType(STARBASIC)
{ {
DBG_ASSERT( RTL_TEXTENCODING_UTF8 == GetSrcEncoding( ), DBG_ASSERT( RTL_TEXTENCODING_UTF8 == GetSrcEncoding( ),
"SfxHTMLParser::SfxHTMLParser: From where comes ZS?" ); "SfxHTMLParser::SfxHTMLParser: From where comes ZS?" );
......
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