diff --git a/.lgtm/cpp-queries/fgets.ql b/.lgtm/cpp-queries/fgets.ql index 82de8c4482..a4181e4f3d 100644 --- a/.lgtm/cpp-queries/fgets.ql +++ b/.lgtm/cpp-queries/fgets.ql @@ -10,13 +10,11 @@ */ import cpp - predicate dangerousFunction(Function function) { exists (string name | name = function.getQualifiedName() | name = "fgets") } - from FunctionCall call, Function target where call.getTarget() = target and dangerousFunction(target)