diff options
author | tsepez <tsepez@chromium.org> | 2016-10-13 16:36:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-13 16:36:20 -0700 |
commit | 1d023881cd53485303c0fcc0b5878e700dc470fd (patch) | |
tree | 0f41370ff729b0495f475887a3f6f38a0210aae4 /fpdfsdk/formfiller | |
parent | 20f8ecc2f44332792c11cf0ac566c0114712b83c (diff) | |
download | pdfium-1d023881cd53485303c0fcc0b5878e700dc470fd.tar.xz |
Make CPDF_Object containers hold objects via unique pointers.
This tweaks the implementation while leaving the API the
same. The API change is more disruptive, so break this
part off first.
Review-Url: https://codereview.chromium.org/2385293002
Diffstat (limited to 'fpdfsdk/formfiller')
-rw-r--r-- | fpdfsdk/formfiller/cba_fontmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/formfiller/cba_fontmap.cpp b/fpdfsdk/formfiller/cba_fontmap.cpp index 26feaf765d..7178b902d0 100644 --- a/fpdfsdk/formfiller/cba_fontmap.cpp +++ b/fpdfsdk/formfiller/cba_fontmap.cpp @@ -119,7 +119,7 @@ CPDF_Font* CBA_FontMap::FindResFontSameCharset(CPDF_Dictionary* pResDict, CPDF_Font* pFind = nullptr; for (const auto& it : *pFonts) { const CFX_ByteString& csKey = it.first; - CPDF_Object* pObj = it.second; + CPDF_Object* pObj = it.second.get(); if (!pObj) continue; |