diff options
author | tsepez <tsepez@chromium.org> | 2017-01-23 11:01:42 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-23 11:01:42 -0800 |
commit | c757d9a6f90bb879ce2cdd4a756b7b0e1885eb25 (patch) | |
tree | 34847e86907f80d508598eadbb13b463395b49fe /xfa/fxfa/parser/cxfa_simple_parser.cpp | |
parent | 82aa396188ec26f22fe730f4e35b5a54ebffb5dc (diff) | |
download | pdfium-c757d9a6f90bb879ce2cdd4a756b7b0e1885eb25.tar.xz |
Remove some |void Release() { delete this; }| anti-pattern.
m_pSyntaxParser was unused.
Review-Url: https://codereview.chromium.org/2646203002
Diffstat (limited to 'xfa/fxfa/parser/cxfa_simple_parser.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_simple_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_simple_parser.cpp b/xfa/fxfa/parser/cxfa_simple_parser.cpp index 9f6fef9c1f..2417afaf1e 100644 --- a/xfa/fxfa/parser/cxfa_simple_parser.cpp +++ b/xfa/fxfa/parser/cxfa_simple_parser.cpp @@ -747,7 +747,7 @@ CXFA_Node* CXFA_SimpleParser::ParseAsXDPPacket_Data( m_pFactory->CreateNode(XFA_XDPPACKET_Datasets, XFA_Element::DataGroup); if (!pNode) { if (pDataXMLNode != pXMLDocumentNode) - pDataXMLNode->Release(); + delete pDataXMLNode; return nullptr; } CFX_WideString wsLocalName; |