commit | c3b3e75e2ec66b16214fcd56dd08c0d9f6b1a591 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Jan 27 13:48:50 2012 -0800 |
committer | Elliott Hughes <enh@google.com> | Fri Jan 27 13:48:50 2012 -0800 |
tree | acce48bc3d3b77d8eec22d837612de3533ba49f3 | |
parent | 699f9f42058ce438930ee0a5a9ae6451e3d8a2fe [diff] [blame] |
Fix a jdwp assert. (From https://android-git.corp.google.com/g/161010.) Change-Id: I8d9cd2cd526c4ced5db412ce2a1fa61f921c48de
diff --git a/src/jdwp/jdwp_main.cc b/src/jdwp/jdwp_main.cc index 22767ef..72aff5c 100644 --- a/src/jdwp/jdwp_main.cc +++ b/src/jdwp/jdwp_main.cc
@@ -429,7 +429,7 @@ /* now get the current time */ int64_t now = MilliTime(); - CHECK_GT(now, last); + CHECK_GE(now, last); VLOG(jdwp) << "+++ debugger interval=" << (now - last); return now - last;