src/share/vm/utilities/vmError.cpp

Print this page

        

@@ -569,13 +569,10 @@
 
        // see if it's a valid frame
        if (fr.pc()) {
           st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
 
-          // initialize decoder to decode C frames
-          Decoder decoder;
-
           int count = 0;
           while (count++ < StackPrintLimit) {
              fr.print_on_error(st, buf, sizeof(buf));
              st->cr();
              if (os::is_first_C_frame(&fr)) break;