2007-11-23 18:20:54 +05:30
|
|
|
#!/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
|
2008-06-17 11:13:38 +05:30
|
|
|
grep -v $freed <temp1 >temp2
|
2007-11-23 18:20:54 +05:30
|
|
|
mv temp2 temp1
|
|
|
|
done
|