diff options
author | Lei Zhang <thestig@chromium.org> | 2015-07-16 18:45:22 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-07-16 18:45:22 -0700 |
commit | 796c908e7b7bdde819a1e5a4bfd3576d8e8859d6 (patch) | |
tree | 8c0cd763dd9bf70bc14da8f8cb7893835a3572fe /fpdfsdk/src/formfiller/FFL_TextField.cpp | |
parent | ba026913c273a5c1c841bced288fdab03f10ad08 (diff) | |
download | pdfium-796c908e7b7bdde819a1e5a4bfd3576d8e8859d6.tar.xz |
Merge to XFA: Cleanup: Do not check pointers before deleting them, part 2.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1195363002 .
(cherry picked from commit 21bf242a31eff79f754c5e9c3b41c52e33483bb0)
Review URL: https://codereview.chromium.org/1235753006 .
Diffstat (limited to 'fpdfsdk/src/formfiller/FFL_TextField.cpp')
-rw-r--r-- | fpdfsdk/src/formfiller/FFL_TextField.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fpdfsdk/src/formfiller/FFL_TextField.cpp b/fpdfsdk/src/formfiller/FFL_TextField.cpp index 83c7f35ba9..db69101ec2 100644 --- a/fpdfsdk/src/formfiller/FFL_TextField.cpp +++ b/fpdfsdk/src/formfiller/FFL_TextField.cpp @@ -19,12 +19,7 @@ CFFL_TextField::CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) CFFL_TextField::~CFFL_TextField() { - if (m_pFontMap) - { - delete m_pFontMap; - m_pFontMap = NULL; - } - + delete m_pFontMap; } PWL_CREATEPARAM CFFL_TextField::GetCreateParam() |