Index: fpdfsdk/src/javascript/Document.cpp |
diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp |
index 3f55058fad9993c1e7633cd8be2641090c24f29c..5b4ab5cda2c64b2defc97ac67a058b6256bc9d0c 100644 |
--- a/fpdfsdk/src/javascript/Document.cpp |
+++ b/fpdfsdk/src/javascript/Document.cpp |
@@ -943,15 +943,10 @@ FX_BOOL Document::delay(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sE |
} |
else |
{ |
- ASSERT(m_pDocument != NULL); |
- |
- if (!m_pDocument->GetPermissions(FPDFPERM_MODIFY)) return FALSE; |
- |
- bool b; |
- vp >> b; |
- |
- m_bDelay = b; |
+ if (!m_pDocument->GetPermissions(FPDFPERM_MODIFY)) |
+j return FALSE; |
+ vp >> m_bDelay; |
if (m_bDelay) |
{ |
for (int i=0,sz=m_DelayData.GetSize(); i<sz; i++) |
@@ -1109,7 +1104,7 @@ FX_BOOL Document::external(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& |
{ |
//In Chrome case,should always return true. |
if (vp.IsGetting()) { |
- vp << TRUE; |
+ vp << true; |
} |
return TRUE; |
} |