From 8444cda5e53b8cc1111563e957215a79f509fdae Mon Sep 17 00:00:00 2001 From: Yann Rouillard Date: Fri, 10 May 2013 14:43:03 +0200 Subject: [PATCH] elfdump: handles the extern symbol case in the syminfo table --- scripts/elfdump.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/elfdump.py b/scripts/elfdump.py index b96f17c..eb149dd 100755 --- a/scripts/elfdump.py +++ b/scripts/elfdump.py @@ -99,6 +99,8 @@ class Elfdump(object): boundto = '' elif syminfo['si_boundto'] == 0xfffe: boundto = '' + elif syminfo['si_boundto'] == 0xfffc: + boundto = '' elif syminfo['si_boundto'] == 0xfffd: boundto = '' else: -- 2.30.2