Commit 1e49849c by Nicola Pero Committed by Nicola Pero

In libobjc/: 2011-05-26 Nicola Pero <nicola.pero@meta-innovation.com>

In libobjc/:
2011-05-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	* sendmsg.c (__objc_install_dtable_for_class): Use objc_getClass,
	not objc_lookupClass.

From-SVN: r174268
parent 1651e703
2011-05-26 Nicola Pero <nicola.pero@meta-innovation.com>
* sendmsg.c (__objc_install_dtable_for_class): Use objc_getClass,
not objc_lookupClass.
2011-05-25 Richard Frith-Macdonald <rfm@gnu.org> 2011-05-25 Richard Frith-Macdonald <rfm@gnu.org>
David Ayers <ayers@fsfe.org> David Ayers <ayers@fsfe.org>
......
...@@ -1111,7 +1111,7 @@ __objc_install_dtable_for_class (Class cls) ...@@ -1111,7 +1111,7 @@ __objc_install_dtable_for_class (Class cls)
else else
{ {
/* Retreive the class from the meta class. */ /* Retreive the class from the meta class. */
Class c = objc_lookup_class (cls->name); Class c = objc_getClass (cls->name);
assert (CLS_ISMETA (cls)); assert (CLS_ISMETA (cls));
assert (c); assert (c);
__objc_send_initialize (c); __objc_send_initialize (c);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment