| Index: core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp
|
| diff --git a/core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp b/core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp
|
| index c503277f878f3078fa5f75227c572dc88ced0a37..132286475766ddfa8dfc9b4eb9dc5b5ff50642cf 100644
|
| --- a/core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp
|
| +++ b/core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp
|
| @@ -544,7 +544,7 @@ void CPDF_Array::AddName(const CFX_ByteString& str) {
|
| }
|
| void CPDF_Array::AddString(const CFX_ByteString& str) {
|
| ASSERT(IsArray());
|
| - Add(new CPDF_String(str));
|
| + Add(new CPDF_String(str, FALSE));
|
| }
|
| void CPDF_Array::AddInteger(int i) {
|
| ASSERT(IsArray());
|
| @@ -781,7 +781,7 @@ void CPDF_Dictionary::SetAtName(const CFX_ByteStringC& key,
|
| }
|
| void CPDF_Dictionary::SetAtString(const CFX_ByteStringC& key,
|
| const CFX_ByteString& str) {
|
| - SetAt(key, new CPDF_String(str));
|
| + SetAt(key, new CPDF_String(str, FALSE));
|
| }
|
| void CPDF_Dictionary::SetAtReference(const CFX_ByteStringC& key,
|
| CPDF_IndirectObjects* pDoc,
|
|
|