hotspot/src/share/vm/runtime/reflection.cpp
changeset 17861 8f14da01157d
parent 17860 1ad3f2d9b4eb
child 17863 d77007cf03c1
--- a/hotspot/src/share/vm/runtime/reflection.cpp	Fri May 31 13:02:24 2013 +0200
+++ b/hotspot/src/share/vm/runtime/reflection.cpp	Fri May 31 20:24:58 2013 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -375,7 +375,7 @@
     }
   }
   klass = klass->array_klass(dim, CHECK_NULL);
-  oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, THREAD);
+  oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, CHECK_NULL);
   assert(obj->is_array(), "just checking");
   return arrayOop(obj);
 }