]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
checkpatch: remove false unbalanced braces warning
authorSven Eckelmann <sven@narfation.org>
Fri, 24 Feb 2017 23:01:43 +0000 (15:01 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 25 Feb 2017 01:46:57 +0000 (17:46 -0800)
Lines containing "} else {" should not be detected as unbalanced braces.
But the second check can be reduced to ".+else\s*{" and it therefore
never checked if the beginning of a line contains any other character
(like the relevant "}").  This check would also return true for "} else
{" and create warnings like

    CHECK: Unbalanced braces around else statement
    #391: FILE: ./net/batman-adv/tvlv.c:391:
    +   } else {

The check can be changed to check the whole line for the missing "}" to
avoid this false positive.

Fixes: 0d1532456c26 ("checkpatch: notice unbalanced else braces in a patch")
Link: http://lkml.kernel.org/r/20170220121644.12209-1-sven@narfation.org
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl

index 7fb73d92801cd80ff726f622b014ef8ec1d715e0..918259a55f6511b859588a3b3a6e1c6686683eac 100755 (executable)
@@ -5105,8 +5105,8 @@ sub process {
                }
 
 # check for single line unbalanced braces
-               if ($sline =~ /.\s*\}\s*else\s*$/ ||
-                   $sline =~ /.\s*else\s*\{\s*$/) {
+               if ($sline =~ /^.\s*\}\s*else\s*$/ ||
+                   $sline =~ /^.\s*else\s*\{\s*$/) {
                        CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
                }