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`
|
|
|
|
|
2009-04-08 22:16:45 +05:30
|
|
|
grep -v free "$output" >"$output.leaked"
|
2007-11-23 18:20:54 +05:30
|
|
|
for freed in $freelist; do
|
|
|
|
echo Dropping $freed
|
2009-04-08 22:16:45 +05:30
|
|
|
grep -v $freed <"$output.leaked" >"$output.temp"
|
|
|
|
mv "$output.temp" "$output.leaked"
|
2007-11-23 18:20:54 +05:30
|
|
|
done
|