aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/libc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/libc.sh b/common/libc.sh
index 4d27b6d..b054595 100644
--- a/common/libc.sh
+++ b/common/libc.sh
@@ -17,9 +17,9 @@ extract_label() {
dump_libc_start_main_ret() {
local call_main=`objdump -D $1 \
- | grep -A 100 '<__libc_start_main>' \
+ | egrep -A 100 '<__libc_start_main.*>' \
| grep call \
- | grep -B 1 '<exit>' \
+ | egrep -B 1 '<exit.*>' \
| head -n 1 \
| extract_label`
local offset=`objdump -D $1 | egrep -A 1 "(^| )$call_main:" | tail -n 1 | extract_label`