[clang-format] Fix a crash due to dereferencing null MatchingParen
authorOwen Pan <owenpiano@gmail.com>
Sun, 20 Nov 2022 03:04:24 +0000 (19:04 -0800)
committerOwen Pan <owenpiano@gmail.com>
Mon, 21 Nov 2022 20:33:51 +0000 (12:33 -0800)
Fixes #59089.

Differential Revision: https://reviews.llvm.org/D138371

clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp

index 21152b8..7f16d04 100644 (file)
@@ -2851,6 +2851,8 @@ static bool isFunctionDeclarationName(bool IsCpp, const FormatToken &Current,
           return false;
       } else if (isCppAttribute(IsCpp, *Next)) {
         Next = Next->MatchingParen;
+        if (!Next)
+          return false;
       } else if (Next->is(tok::l_paren)) {
         break;
       } else {
index d4150f4..1db8ee9 100644 (file)
@@ -25017,6 +25017,8 @@ TEST_F(FormatTest, RemoveSemicolon) {
                "}",
                Style);
 
+  verifyIncompleteFormat("class C final [[deprecated(l]] {});", Style);
+
   // These tests are here to show a problem that may not be easily
   // solved, our implementation to remove semicolons is only as good
   // as our FunctionLBrace detection and this fails for empty braces