diff options
Diffstat (limited to 'runtime/jdwp/jdwp_event.cc')
-rw-r--r-- | runtime/jdwp/jdwp_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jdwp/jdwp_event.cc b/runtime/jdwp/jdwp_event.cc index 9409b7661f..0353ea7462 100644 --- a/runtime/jdwp/jdwp_event.cc +++ b/runtime/jdwp/jdwp_event.cc @@ -1159,7 +1159,7 @@ void JdwpState::PostException(const EventLocation* pThrowLoc, mirror::Throwable* } basket.className = Dbg::GetClassName(basket.locationClass.Get()); basket.exceptionClass.Assign(exception_object->GetClass()); - basket.caught = (pCatchLoc->method != 0); + basket.caught = (pCatchLoc->method != nullptr); basket.thisPtr.Assign(thisPtr); /* don't try to post an exception caused by the debugger */ |