[PATCH] D111833: [clang] Fortify warning for scanf calls with field width too big.

Elliott Hughes via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 15 09:53:20 PDT 2021


enh added inline comments.


================
Comment at: clang/lib/Sema/SemaChecking.cpp:662
+    if (Index < FD->getNumParams()) {
+      if (const auto *POS =
+              FD->getParamDecl(Index)->getAttr<PassObjectSizeAttr>())
----------------
mbenfield wrote:
> enh wrote:
> > (stray tabs?)
> Not sure what you're referring to. AFAICT there are no tabs in this file. 
oh, gerrit uses the >> symbol to mean "tab". is this tool just saying "indentation changed", not specifically "someone added a tab"?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D111833



More information about the cfe-commits mailing list