From 4605a25da58ccff6e29d18af4b947c243359e6d9 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Dec 15 2020 09:45:29 +0000 Subject: lgtm: drop redundant newlines (cherry picked from commit 845702c63863add5606a7a7f00a959ffdcf89635) patch_name: 0096-lgtm-drop-redundant-newlines.patch present_in_specfile: true location_in_specfile: 96 squash_commits: true --- diff --git a/.lgtm/cpp-queries/fgets.ql b/.lgtm/cpp-queries/fgets.ql index 82de8c4..a4181e4 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)