aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_leaktool.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_leaktool.sh')
-rwxr-xr-x[-rw-r--r--]shell/hush_leaktool.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/hush_leaktool.sh b/shell/hush_leaktool.sh
index 54161b3e9..f8e47aecd 100644..100755
--- a/shell/hush_leaktool.sh
+++ b/shell/hush_leaktool.sh
@@ -5,9 +5,9 @@ output=output
freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs`
-grep -v free "$output" >temp1
+grep -v free "$output" >"$output.leaked"
for freed in $freelist; do
echo Dropping $freed
- grep -v $freed <temp1 >temp2
- mv temp2 temp1
+ grep -v $freed <"$output.leaked" >"$output.temp"
+ mv "$output.temp" "$output.leaked"
done