summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/cpdf_name.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/parser/cpdf_name.cpp')
-rw-r--r--core/fpdfapi/parser/cpdf_name.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/fpdfapi/parser/cpdf_name.cpp b/core/fpdfapi/parser/cpdf_name.cpp
index bb46425117..5be64d39d5 100644
--- a/core/fpdfapi/parser/cpdf_name.cpp
+++ b/core/fpdfapi/parser/cpdf_name.cpp
@@ -9,7 +9,12 @@
#include "core/fpdfapi/parser/fpdf_parser_decode.h"
#include "third_party/base/ptr_util.h"
-CPDF_Name::CPDF_Name(const CFX_ByteString& str) : m_Name(str) {}
+CPDF_Name::CPDF_Name(CFX_WeakPtr<CFX_ByteStringPool> pPool,
+ const CFX_ByteString& str)
+ : m_Name(str) {
+ if (pPool)
+ m_Name = pPool->Intern(m_Name);
+}
CPDF_Name::~CPDF_Name() {}
@@ -18,7 +23,7 @@ CPDF_Object::Type CPDF_Name::GetType() const {
}
std::unique_ptr<CPDF_Object> CPDF_Name::Clone() const {
- return pdfium::MakeUnique<CPDF_Name>(m_Name);
+ return pdfium::MakeUnique<CPDF_Name>(nullptr, m_Name);
}
CFX_ByteString CPDF_Name::GetString() const {