summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Sebastien Hertz <shertz@google.com> 2013-10-19 16:39:24 +0200
committer Sebastien Hertz <shertz@google.com> 2013-10-19 16:39:24 +0200
commitf2910eef247b45ce1d489e323b36b5de6b6157aa (patch)
treecd7e7bef7b016180ce90df635b907201c346bf5c
parentbcf09e40f1b5edb7c7e90a96efadba5482b13551 (diff)
Fix JDWP line table output.
Bug: 11238911 Change-Id: I952fba04393b23b1d42dc6a2d22cd583ce2512ce
-rw-r--r--runtime/debugger.cc2
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);