diff options
author | Andy Whitcroft <apw@canonical.com> | 2009-01-06 17:41:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:17 -0500 |
commit | b53c8e104ed071c47ada2adce194625ab03d9f3d (patch) | |
tree | 52354de0c3b69be0cf5d0eb85510f82b74eb807a /scripts/checkpatch.pl | |
parent | 2d1bafd799ee0442979e6ce4145d58b69d3cade2 (diff) |
checkpatch: ensure we actually detect if assignments split across lines
When checking for assignments within if conditionals we check the whole of
the condition, but the match is performed using a line constrained regular
expression. This means we can miss split conditionals or those on the
second line. Allow the check to span lines.
Signed-off-by: Andy Whitcroft <apw@canonical.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index a521d493b0c8..c39ce0b663b4 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -2048,7 +2048,7 @@ sub process { | |||
2048 | $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) { | 2048 | $line =~ /\b(?:if|while|for)\s*\(/ && $line !~ /^.\s*#/) { |
2049 | my ($s, $c) = ($stat, $cond); | 2049 | my ($s, $c) = ($stat, $cond); |
2050 | 2050 | ||
2051 | if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/) { | 2051 | if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) { |
2052 | ERROR("do not use assignment in if condition\n" . $herecurr); | 2052 | ERROR("do not use assignment in if condition\n" . $herecurr); |
2053 | } | 2053 | } |
2054 | 2054 | ||