Update cpp/ql/lib/semmle/code/cpp/commons/StringConcatenation.qll

Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com>
This commit is contained in:
Ben Rodes
2023-12-19 08:47:58 -05:00
committed by GitHub
parent 66f725dd05
commit 49728571cf

View File

@@ -9,7 +9,7 @@ private import semmle.code.cpp.dataflow.new.DataFlow
class StringConcatenation extends Call {
StringConcatenation() {
// sprintf-like functions, i.e., concat through formating
// sprintf-like functions, i.e., concat through formatting
exists(FormattingFunctionCall fc | this = fc)
or
this.getTarget() instanceof StrcatFunction