We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6302ca commit 28c0e89Copy full SHA for 28c0e89
1 file changed
rust/ql/src/queries/security/CWE-696/BadCtorInitialization.ql
@@ -54,4 +54,5 @@ query predicate edges(PathElement pred, PathElement succ) {
54
55
from CtorAttr ctor, StdCall call
56
where edges*(ctor, call)
57
-select call, ctor, call, "Call to " + call.toString() + " in a function with the " + ctor.getWhichAttr() + " attribute."
+select call, ctor, call,
58
+ "Call to " + call.toString() + " in a function with the " + ctor.getWhichAttr() + " attribute."
0 commit comments