[PATCH] D127183: [clang-format] Skip parsing a block if it's nested too deep

Owen Pan via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 7 03:43:16 PDT 2022


owenpan updated this revision to Diff 434761.
owenpan edited the summary of this revision.
owenpan added a comment.

Rebased.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127183/new/

https://reviews.llvm.org/D127183

Files:
  clang/lib/Format/UnwrappedLineParser.cpp


Index: clang/lib/Format/UnwrappedLineParser.cpp
===================================================================
--- clang/lib/Format/UnwrappedLineParser.cpp
+++ clang/lib/Format/UnwrappedLineParser.cpp
@@ -864,6 +864,10 @@
   if (AddLevels > 0u && Style.BreakBeforeBraces != FormatStyle::BS_Whitesmiths)
     Line->Level += AddLevels;
 
+  // Bail out if there are too many levels. Otherwise, the stack might overflow.
+  if (Line->Level > 300)
+    return;
+
   const bool SimpleBlock =
       parseLevel(Tok, CanContainBracedList, NextLBracesType, IfKind);
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D127183.434761.patch
Type: text/x-patch
Size: 565 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220607/4b4876b4/attachment-0001.bin>


More information about the cfe-commits mailing list