aboutsummaryrefslogtreecommitdiff
path: root/scripts/find_bad_common_bufsiz
blob: e80cf62ef8f4b41389ee9398135dc7403c1cfe42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# This script finds applets with multiple uses of bb_common_bufsiz1
# (== possible bugs).
# Currently (2007-06-04) reports 3 false positives:
# ./coreutils/diff.c:7
# ./loginutils/getty.c:2
# ./util-linux/mount.c:5

find -name '*.c' \
| while read name; do
    grep -Hc bb_common_bufsiz1 "$name"
done | grep -v ':[01]$'