X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=shell%2Fhush_leaktool.sh;h=ca35ec1443cfc77ac97d7848764e8aefd268f8c2;hb=020465218ccff1195a47a890037db37d0395c9d9;hp=54161b3e98aea1064f2cc7614aa3439ad621d9d1;hpb=c7985b76c5174c4c224b67e29dd554443f80f47e;p=oweals%2Fbusybox.git diff --git a/shell/hush_leaktool.sh b/shell/hush_leaktool.sh old mode 100644 new mode 100755 index 54161b3e9..ca35ec144 --- a/shell/hush_leaktool.sh +++ b/shell/hush_leaktool.sh @@ -5,9 +5,21 @@ output=output freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs` -grep -v free "$output" >temp1 +grep -v free "$output" >"$output.leaked" + +i=8 +list= for freed in $freelist; do - echo Dropping $freed - grep -v $freed temp2 - mv temp2 temp1 + list="$list -e $freed" + test $((--i)) != 0 && continue + echo Dropping $list + grep -F -v $list <"$output.leaked" >"$output.temp" + mv "$output.temp" "$output.leaked" + i=8 + list= done +if test "$list"; then + echo Dropping $list + grep -F -v $list <"$output.leaked" >"$output.temp" + mv "$output.temp" "$output.leaked" +fi