--- old/src/hotspot/share/classfile/verificationType.cpp 2018-10-17 08:43:09.659683051 -0400 +++ new/src/hotspot/share/classfile/verificationType.cpp 2018-10-17 08:43:09.112239286 -0400 @@ -172,7 +172,11 @@ } else if (is_uninitialized()) { st->print("uninitialized %d", bci()); } else { - name()->print_value_on(st); + if (name() != NULL) { + name()->print_value_on(st); + } else { + st->print_cr("NULL"); + } } } }