| Index: fpdfsdk/src/javascript/Document.cpp
|
| diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp
|
| index 21f68c9b42b6e31ae4eb91047fb6ece8868adf71..8908dfb66488aa2e659329fa0f4e8e36127ec2f6 100644
|
| --- a/fpdfsdk/src/javascript/Document.cpp
|
| +++ b/fpdfsdk/src/javascript/Document.cpp
|
| @@ -848,17 +848,14 @@ FX_BOOL Document::info(IJS_Context* cc,
|
| CFX_ByteString bsKey;
|
| CPDF_Object* pValueObj = pDictionary->GetNextElement(pos, bsKey);
|
| CFX_WideString wsKey = CFX_WideString::FromUTF8(bsKey, bsKey.GetLength());
|
| - if (pValueObj->IsString() || (pValueObj->GetType() == PDFOBJ_NAME)) {
|
| +
|
| + if (pValueObj->IsString() || pValueObj->IsName()) {
|
| FXJS_PutObjectString(isolate, pObj, wsKey.c_str(),
|
| pValueObj->GetUnicodeText().c_str());
|
| - }
|
| -
|
| - if (pValueObj->IsNumber()) {
|
| + } else if (pValueObj->IsNumber()) {
|
| FXJS_PutObjectNumber(isolate, pObj, wsKey.c_str(),
|
| (float)pValueObj->GetNumber());
|
| - }
|
| -
|
| - if (pValueObj->IsBoolean()) {
|
| + } else if (pValueObj->IsBoolean()) {
|
| FXJS_PutObjectBoolean(isolate, pObj, wsKey.c_str(),
|
| (bool)pValueObj->GetInteger());
|
| }
|
|
|