diff options
Diffstat (limited to 'runtime/debugger.cc')
-rw-r--r-- | runtime/debugger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc index f75f47c075..e607b31e68 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -1484,7 +1484,7 @@ void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t d if (m == nullptr) { memset(location, 0, sizeof(*location)); } else { - mirror::Class* c = m->GetDeclaringClass(); + ObjPtr<mirror::Class> c = m->GetDeclaringClass(); location->type_tag = GetTypeTag(c); location->class_id = gRegistry->AddRefType(c); // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same. |