File: find_bad_common_bufsiz

package info (click to toggle)
busybox 1%3A1.10.2-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,488 kB
  • ctags: 19,537
  • sloc: ansic: 161,014; sh: 2,027; cpp: 1,429; makefile: 969; yacc: 568; perl: 395; lex: 350; python: 197; awk: 29
file content (13 lines) | stat: -rwxr-xr-x 331 bytes parent folder | download | duplicates (11)
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]$'