Index: xfa/src/fdp/src/xml/fde_xml.cpp |
diff --git a/xfa/src/fdp/src/xml/fde_xml.cpp b/xfa/src/fdp/src/xml/fde_xml.cpp |
index 056254a14953ce948534be90bbbb837822d9e982..1931a57d1116ce3f918b4dbfde539f43e73b49f6 100644 |
--- a/xfa/src/fdp/src/xml/fde_xml.cpp |
+++ b/xfa/src/fdp/src/xml/fde_xml.cpp |
@@ -506,7 +506,7 @@ IFDE_XMLInstruction* IFDE_XMLInstruction::Create( |
return (IFDE_XMLInstruction*)new CFDE_XMLInstruction(wsTarget); |
} |
CFDE_XMLInstruction::CFDE_XMLInstruction(const CFX_WideString& wsTarget) |
- : CFDE_XMLNode(), m_wsTarget(wsTarget), m_TargetData(), m_Attributes() { |
+ : m_wsTarget(wsTarget) { |
FXSYS_assert(m_wsTarget.GetLength() > 0); |
} |
CFDE_XMLNode* CFDE_XMLInstruction::Clone(FX_BOOL bRecursive) { |
@@ -1316,10 +1316,11 @@ inline void CFDE_XMLSAXParser::Pop() { |
} |
#ifdef _FDE_BLOCK_BUFFER |
CFDE_BlockBuffer::CFDE_BlockBuffer(int32_t iAllocStep) |
- : m_iAllocStep(iAllocStep), |
- m_iStartPosition(0), |
+ : m_iDataLength(0), |
m_iBufferSize(0), |
- m_iDataLength(0) {} |
+ m_iAllocStep(iAllocStep), |
+ m_iStartPosition(0) { |
+} |
CFDE_BlockBuffer::~CFDE_BlockBuffer() { |
ClearBuffer(); |
} |