diff src/share/vm/classfile/verificationType.hpp @ 18058:54bc75c144b0

Merge
author asaha
date Thu, 29 May 2014 13:14:25 -0700
parents 2373a1f4987c c4bc6b5c6f25
children
line wrap: on
line diff
--- a/src/share/vm/classfile/verificationType.hpp	Wed May 28 08:09:26 2014 -0400
+++ b/src/share/vm/classfile/verificationType.hpp	Thu May 29 13:14:25 2014 -0700
@@ -302,7 +302,7 @@
   int dimensions() const {
     assert(is_array(), "Must be an array");
     int index = 0;
-    while (name()->byte_at(index++) == '[');
+    while (name()->byte_at(index) == '[') index++;
     return index;
   }