commit | 172109b72383f109f0ee240955e15643ba755f63 | [log] [tgz] |
---|---|---|
author | Sebastien Hertz <shertz@google.com> | Wed Apr 16 07:29:10 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Apr 16 07:29:11 2014 +0000 |
tree | 2fd5220bc0c1b8a3396de47619df2dbcfd1fcc2d | |
parent | 9623c6668962559e818d1e7f05a58dcb96c71fa9 [diff] | |
parent | 43207797d05e54fb945e2fc22145722cb26cb27b [diff] |
Merge "Fix JDWP count event modifier"
diff --git a/runtime/jdwp/jdwp_event.cc b/runtime/jdwp/jdwp_event.cc index 9627802..6908047 100644 --- a/runtime/jdwp/jdwp_event.cc +++ b/runtime/jdwp/jdwp_event.cc
@@ -407,6 +407,9 @@ case MK_COUNT: CHECK_GT(pMod->count.count, 0); pMod->count.count--; + if (pMod->count.count > 0) { + return false; + } break; case MK_CONDITIONAL: CHECK(false); // should not be getting these