summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Haneman <billh@src.gnome.org>2006-09-08 16:14:23 +0000
committerBill Haneman <billh@src.gnome.org>2006-09-08 16:14:23 +0000
commita61e6c168f7bc32c6560d5f729c1e243c800b024 (patch)
treed1596f51e26de04c3bd8b66142c86864b9985024
parent4a9067ae70b0a0c207a01821f358d9a11991647c (diff)
downloadatk-a61e6c168f7bc32c6560d5f729c1e243c800b024.tar.gz
Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink.
-rw-r--r--ChangeLog7
-rw-r--r--atk/atkhyperlinkimpl.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 57b733b..c39e1da 100644
--- 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.
diff --git a/atk/atkhyperlinkimpl.c b/atk/atkhyperlinkimpl.c
index 275390a..ecf3124 100644
--- a/atk/atkhyperlinkimpl.c
+++ b/atk/atkhyperlinkimpl.c
@@ -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;
}