diff options
| author | Carl Shapiro <cshapiro@google.com> | 2011-05-03 17:59:35 -0700 |
|---|---|---|
| committer | Carl Shapiro <cshapiro@google.com> | 2011-05-03 18:09:17 -0700 |
| commit | a62c3a0ab3fcdde37f47d16e9699a935ae7a8e88 (patch) | |
| tree | b23da5546e400facfa36b3dec6daac8c30d3a537 /vm/native/java_lang_System.cpp | |
| parent | 00c88766d7425c7923187c18a8c7e91d32807a97 (diff) | |
Establish a subclass relationship between ArrayObject and Object.
Change-Id: I9f9fe52bd4ceebb6dde48251a89190ba6bb00ce4
Diffstat (limited to 'vm/native/java_lang_System.cpp')
| -rw-r--r-- | vm/native/java_lang_System.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/native/java_lang_System.cpp b/vm/native/java_lang_System.cpp index e6b2f1afe..06ab5f81c 100644 --- a/vm/native/java_lang_System.cpp +++ b/vm/native/java_lang_System.cpp @@ -155,8 +155,8 @@ static void Dalvik_java_lang_System_arraycopy(const u4* args, JValue* pResult) RETURN_VOID(); } - srcClass = srcArray->obj.clazz; - dstClass = dstArray->obj.clazz; + srcClass = srcArray->clazz; + dstClass = dstArray->clazz; srcType = srcClass->descriptor[1]; dstType = dstClass->descriptor[1]; |
