coverity#1079296 Uninitialized pointer field

Change-Id: I56ba87b453e8111a5c54f40eeb52d2998d140ce9
This commit is contained in:
Caolán McNamara
2014-03-15 14:38:35 +00:00
parent 8967b65be8
commit a43a0e004c

View File

@@ -53,10 +53,30 @@ typedef ::std::set< MathTypeFont, LessMathTypeFont > MathTypeFontSet;
class MathType class MathType
{ {
public: public:
MathType(OUString &rIn) : MathType(OUString &rIn)
rRet(rIn), nHAlign(0), nVAlign(0), nDefaultSize(12), : nVersion(0)
nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), bIsSilent(sal_False), , nPlatform(0)
nTypeFace(0) , nProduct(0)
, nProdVersion(0)
, nProdSubVersion(0)
, pS(NULL)
, rRet(rIn)
, pTree(NULL)
, nHAlign(0)
, nVAlign(0)
, nPendingAttributes(0)
, nInsertion(0)
, nDefaultSize(12)
, nLSize(0)
, nDSize(0)
, nCurSize(0)
, nLastSize(0)
, nSpec(0)
, bIsSilent(sal_False)
, bIsReInterpBrace(sal_False)
, nPostSup(0)
, nPostlSup(0)
, nTypeFace(0)
{ {
Init(); Init();
} }