sval: uninitialized variable warning
[smatch.git] / smatch_scripts / gen_puts_list.sh
blob53246417dc0bd0504c43a8b2e58e698503cce00d
1 #!/bin/bash
3 file=$1
5 if [[ "$file" = "" ]] ; then
6 echo "Usage: $0 <file with smatch messages>"
7 exit 1
8 fi
10 bin_dir=$(dirname $0)
11 remove=$(echo ${bin_dir}/../smatch_data/kernel.puts_argument.remove)
12 tmp=$(mktemp /tmp/smatch.XXXX)
14 echo "// list of functions and the argument they decrement the ref of." > kernel.puts_argument
15 echo '// generated by `gen_puts_list.sh`' >> kernel.puts_argument
16 grep -w puts_arg $file | cut -d ' ' -f 5- >> $tmp
17 cat $tmp $remove $remove 2> /dev/null | sort | uniq -u >> kernel.puts_argument
18 rm $tmp
19 echo "Done. List saved as 'kernel.puts_argument'"