diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 3ac87c5137..46b0113cdd 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -2854,7 +2854,11 @@ mirror::Class* ClassLinker::DefineClass(Thread* self, // Interface object should get the right size here. Regular class will // figure out the right size later and be replaced with one of the right // size when the class becomes resolved. - klass.Assign(AllocClass(self, SizeOfClassWithoutEmbeddedTables(dex_file, dex_class_def))); + if (CanAllocClass()) { + klass.Assign(AllocClass(self, SizeOfClassWithoutEmbeddedTables(dex_file, dex_class_def))); + } else { + return nullptr; + } } if (UNLIKELY(klass == nullptr)) { self->AssertPendingOOMException(); |