From: Tom Hughes Date: Sun, 1 Nov 2009 16:37:33 +0000 (+0000) Subject: Initialise the isIFunc flag when adding a hardwired redirection. Fixes #212547. X-Git-Tag: svn/VALGRIND_3_6_0~486 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e518d8c228d2f0d4e18b1218b92df94730c4218;p=thirdparty%2Fvalgrind.git Initialise the isIFunc flag when adding a hardwired redirection. Fixes #212547. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10923 --- diff --git a/coregrind/m_redir.c b/coregrind/m_redir.c index d4cab7efbb..9eddc57b64 100644 --- a/coregrind/m_redir.c +++ b/coregrind/m_redir.c @@ -830,6 +830,7 @@ static void add_hardwired_active ( Addr from, Addr to ) act.parent_spec = NULL; act.parent_sym = NULL; act.isWrap = False; + act.isIFunc = False; maybe_add_active( act ); }