From: Bill Haneman Date: Fri, 8 Sep 2006 16:14:23 +0000 (+0000) Subject: Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink. X-Git-Tag: atk_1_12_3~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a61e6c168f7bc32c6560d5f729c1e243c800b024;hp=4a9067ae70b0a0c207a01821f358d9a11991647c;p=platform%2Fupstream%2Fatk.git Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink. --- diff --git a/ChangeLog b/ChangeLog index 57b733b..c39e1da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-09-08 Bill Haneman + + * 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 * 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; }