aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_leaktool.sh
blob: 54161b3e98aea1064f2cc7614aa3439ad621d9d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# hush's stderr with leak debug enabled
output=output

freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs`

grep -v free "$output" >temp1
for freed in $freelist; do
    echo Dropping $freed
    grep -v $freed <temp1 >temp2
    mv temp2 temp1
done