diff src/share/vm/oops/method.cpp @ 6791:8d3cc6612bd1

7197033: missing ResourceMark for assert in Method::bci_from() Summary: Added missing ResourceMark. Reviewed-by: dholmes, coleenp, jmasa
author kvn
date Mon, 17 Sep 2012 17:02:10 -0700
parents aed758eda82a
children 9191895df19d
line wrap: on
line diff
--- a/src/share/vm/oops/method.cpp	Mon Sep 17 12:57:58 2012 -0700
+++ b/src/share/vm/oops/method.cpp	Mon Sep 17 17:02:10 2012 -0700
@@ -251,8 +251,12 @@
 
 
 int Method::bci_from(address bcp) const {
+#ifdef ASSERT
+  { ResourceMark rm;
   assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
          err_msg("bcp doesn't belong to this method: bcp: " INTPTR_FORMAT ", method: %s", bcp, name_and_sig_as_C_string()));
+  }
+#endif
   return bcp - code_base();
 }