summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-10-30 21:26:12 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-30 21:26:12 -0700
commit4598669063e65a66b7a35f63ba035139d4c795d2 (patch)
treeb48c2ac07195d931351ae95987c105e2ad1fec24 /runtime
parent05c487d13791ffa238bef540dc11af1113ff1966 (diff)
parente2946917852af9d2ec643c7c987d2bb66cf2f086 (diff)
downloadart-4598669063e65a66b7a35f63ba035139d4c795d2.zip
art-4598669063e65a66b7a35f63ba035139d4c795d2.tar.gz
art-4598669063e65a66b7a35f63ba035139d4c795d2.tar.bz2
am e2946917: am ebaa337a: am c3b800aa: Merge "Fix JDWP line table output." into klp-dev
* commit 'e2946917852af9d2ec643c7c987d2bb66cf2f086': Fix JDWP line table output.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/debugger.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc
index 4b30a15..bdcf6ac 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);