summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_clippath.cpp
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2016-11-21 16:52:41 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-21 16:52:41 -0800
commit6a1c9bd09ef8fdd2fe2f9e39b9a05f6581be9d87 (patch)
treee909f7f4a56ac319f58865e42d0406de7c65c690 /core/fpdfapi/page/cpdf_clippath.cpp
parent06104a8abc71ecd824d6a461b6f6f31c32fd2135 (diff)
downloadpdfium-6a1c9bd09ef8fdd2fe2f9e39b9a05f6581be9d87.tar.xz
Use more unique_ptrs in CPDF_Image.
Do the same in CPDF_TextObject. Discover CPDF_PageObject::Clone() is unnecessary and remove it. Review-Url: https://codereview.chromium.org/2517163003
Diffstat (limited to 'core/fpdfapi/page/cpdf_clippath.cpp')
-rw-r--r--core/fpdfapi/page/cpdf_clippath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_clippath.cpp b/core/fpdfapi/page/cpdf_clippath.cpp
index 465a1c7997..cfcd9a1e64 100644
--- a/core/fpdfapi/page/cpdf_clippath.cpp
+++ b/core/fpdfapi/page/cpdf_clippath.cpp
@@ -123,7 +123,7 @@ CPDF_ClipPath::PathData::PathData(const PathData& that) {
m_TextList.resize(that.m_TextList.size());
for (size_t i = 0; i < that.m_TextList.size(); ++i) {
if (that.m_TextList[i])
- m_TextList[i].reset(that.m_TextList[i]->Clone());
+ m_TextList[i] = that.m_TextList[i]->Clone();
}
}