X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=shell%2Fhush_leaktool.sh;h=ca35ec1443cfc77ac97d7848764e8aefd268f8c2;hb=a12af2d9f384c7c80dbe419dceab666d53f4642d;hp=f8e47aecdb5fe53e2c0428ebf41d73f6923e316d;hpb=14725f82b61ecae6014c86762d3f2a768d573839;p=oweals%2Fbusybox.git diff --git a/shell/hush_leaktool.sh b/shell/hush_leaktool.sh index f8e47aecd..ca35ec144 100755 --- a/shell/hush_leaktool.sh +++ b/shell/hush_leaktool.sh @@ -6,8 +6,20 @@ output=output freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs` grep -v free "$output" >"$output.leaked" + +i=8 +list= for freed in $freelist; do - echo Dropping $freed - grep -v $freed <"$output.leaked" >"$output.temp" + 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