Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink.
authorBill Haneman <billh@src.gnome.org>
Fri, 8 Sep 2006 16:14:23 +0000 (16:14 +0000)
committerBill Haneman <billh@src.gnome.org>
Fri, 8 Sep 2006 16:14:23 +0000 (16:14 +0000)
ChangeLog
atk/atkhyperlinkimpl.c

index 57b733b..c39e1da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-09-08  Bill Haneman <bill.haneman@sun.com>
+
+       * atk/atkhyperlinkimpl.c:
+       (atk_hyperlink_impl_get_hyperlink): Add missing
+       return statement - thanks to Neo Liu for finding this.
+       Bug #352227.
+
 2006-09-01  Abel Cheung  <abel@oaka.org>
 
        * configure.in: Added 'dz' 'ku' to ALL_LINGUAS.
index 275390a..ecf3124 100644 (file)
@@ -62,7 +62,7 @@ atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *obj)
 
   if (iface->get_hyperlink)
     {
-      (iface->get_hyperlink) (obj);
+      return (iface->get_hyperlink) (obj);
     }
   return NULL;
 }