hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 25326 85b2f2e63e3e
parent 25325 e3af4e02b0d5
child 25470 4e69740b1547
--- a/hotspot/src/share/vm/classfile/classFileParser.cpp	Thu Jun 19 11:16:10 2014 -0400
+++ b/hotspot/src/share/vm/classfile/classFileParser.cpp	Thu Jun 19 14:49:33 2014 -0400
@@ -4139,8 +4139,8 @@
     }
 
     // Allocate mirror and initialize static fields
-    java_lang_Class::create_mirror(this_klass, protection_domain, CHECK_(nullHandle));
-
+    java_lang_Class::create_mirror(this_klass, class_loader, protection_domain,
+                                   CHECK_(nullHandle));
 
     // Generate any default methods - default methods are interface methods
     // that have a default implementation.  This is new with Lambda project.