summaryrefslogtreecommitdiff
path: root/fpdfsdk/cpdfsdk_document.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2016-10-06 14:53:13 -0400
committerDan Sinclair <dsinclair@chromium.org>2016-10-06 14:53:13 -0400
commitca03f7a1c654709152a411f665ce38c3626582e8 (patch)
tree21219202db1f20f84e8bc625662278091f856094 /fpdfsdk/cpdfsdk_document.h
parentf7ca7302bed831801a0b81ff4e1222c75833d2d6 (diff)
downloadpdfium-ca03f7a1c654709152a411f665ce38c3626582e8.tar.xz
Fixup MSan embeddertests
The embeddertests were closing the document before the formfill environment. This caused a use-after-free as we try to use the document during formfill destruction. This Cl fixes the destruction order in the embedder tests. As well, a few guards are put in place to keep the system from crashing if the wrong destruction order is called. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/2398063002 .
Diffstat (limited to 'fpdfsdk/cpdfsdk_document.h')
-rw-r--r--fpdfsdk/cpdfsdk_document.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdfsdk/cpdfsdk_document.h b/fpdfsdk/cpdfsdk_document.h
index 3da229cc67..ee140d82ce 100644
--- a/fpdfsdk/cpdfsdk_document.h
+++ b/fpdfsdk/cpdfsdk_document.h
@@ -54,6 +54,7 @@ class CPDFSDK_Document : public CFX_Observable<CPDFSDK_Document> {
#ifdef PDF_ENABLE_XFA
// Gets the XFA document directly (XFA-only).
CPDFXFA_Document* GetXFADocument() const { return m_pDoc; }
+ void ResetXFADocument() { m_pDoc = nullptr; }
int GetPageViewCount() const { return m_pageMap.size(); }
#endif // PDF_ENABLE_XFA