diff options
| author | 2013-10-31 04:16:24 +0000 | |
|---|---|---|
| committer | 2013-10-31 04:16:24 +0000 | |
| commit | c3b800aa23f88d63e7758bb5a3e8f4d75b887f8d (patch) | |
| tree | 41e682c5cdc2cbdc30073d643822bb3cb5313a60 | |
| parent | 39d0c0d02dc11d10974d368ffd18068ad7d2029a (diff) | |
| parent | f2910eef247b45ce1d489e323b36b5de6b6157aa (diff) | |
Merge "Fix JDWP line table output." into klp-dev
| -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 88269e5578..73f83a2f12 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -1324,7 +1324,7 @@ void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::Expan expandBufAdd8BE(pContext->pReply, address); expandBufAdd4BE(pContext->pReply, line_number); pContext->numItems++; - return true; + return false; } }; mirror::ArtMethod* m = FromMethodId(method_id); |