aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/sharedRuntime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/runtime/sharedRuntime.cpp')
-rw-r--r--src/share/vm/runtime/sharedRuntime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/runtime/sharedRuntime.cpp b/src/share/vm/runtime/sharedRuntime.cpp
index 9655de8e2..13a8c9e9c 100644
--- a/src/share/vm/runtime/sharedRuntime.cpp
+++ b/src/share/vm/runtime/sharedRuntime.cpp
@@ -2055,11 +2055,11 @@ class AdapterHandlerTableIterator : public StackObj {
void scan() {
while (_index < _table->table_size()) {
AdapterHandlerEntry* a = _table->bucket(_index);
+ _index++;
if (a != NULL) {
_current = a;
return;
}
- _index++;
}
}