diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-28 14:31:15 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-28 14:31:15 -0700 |
commit | 551a0fd73570a0292e7b017f764b70c4afde873a (patch) | |
tree | 2a3254f33780fab69a57dd5659e3643d1954753e /xfa | |
parent | 596d3445356b3ed009d45cde8448c7fd2d9644fe (diff) | |
download | pdfium-551a0fd73570a0292e7b017f764b70c4afde873a.tar.xz |
Merge to XFA: Pin V8 version until initialization issue in b584bab resolved.
Also make a Handle => Local change for XFA required at
https://chromium.googlesource.com/v8/v8.git/+/202a97c88eb6807915135a1e6be9aa921cd8efac
to fix compile.
Original Review URL https://codereview.chromium.org/1108913004/
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1108973005
Diffstat (limited to 'xfa')
-rw-r--r-- | xfa/src/fxjse/src/value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/src/fxjse/src/value.cpp b/xfa/src/fxjse/src/value.cpp index 9bbfdf7c61..de7e05455b 100644 --- a/xfa/src/fxjse/src/value.cpp +++ b/xfa/src/fxjse/src/value.cpp @@ -506,7 +506,7 @@ FX_BOOL CFXJSE_Value::Call(CFXJSE_Value* lpReceiver, CFXJSE_Value* lpRetValue, F }
if(lpLocalArgs) {
for (FX_UINT32 i = 0; i < nArgCount; i++) {
- lpLocalArgs[i].~Handle();
+ lpLocalArgs[i].~Local();
}
FX_Free(lpLocalArgs);
}
|