diff options
| author | 2014-03-27 15:00:08 +0000 | |
|---|---|---|
| committer | 2014-03-27 15:00:08 +0000 | |
| commit | e62ff670e2f57a26e33e22dfb0d3efcb34be8363 (patch) | |
| tree | b002bec054e75d62eb915103e422b0d77791a929 /runtime/entrypoints/entrypoint_utils.cc | |
| parent | 6a64e2230610d7d49ba575ef5a72cf862e1262b4 (diff) | |
| parent | 84956ff6c0ff150d86a08157216ded79217d860a (diff) | |
Merge "Reflection tidying."
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils.cc')
| -rw-r--r-- | runtime/entrypoints/entrypoint_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints/entrypoint_utils.cc b/runtime/entrypoints/entrypoint_utils.cc index 829ec4ac86..9e5f54ca20 100644 --- a/runtime/entrypoints/entrypoint_utils.cc +++ b/runtime/entrypoints/entrypoint_utils.cc @@ -200,7 +200,7 @@ JValue InvokeProxyInvocationHandler(ScopedObjectAccessUnchecked& soa, const char } ThrowLocation throw_location(rcvr, proxy_method, -1); JValue result_unboxed; - if (!UnboxPrimitiveForResult(throw_location, result_ref, result_type, result_unboxed)) { + if (!UnboxPrimitiveForResult(throw_location, result_ref, result_type, &result_unboxed)) { DCHECK(soa.Self()->IsExceptionPending()); return zero; } |