Blame SOURCES/0096-lgtm-drop-redundant-newlines.patch

a3e2b5
From d26406cc3f2c186691ce0a09052d3c39d15cc722 Mon Sep 17 00:00:00 2001
a3e2b5
From: Evgeny Vereshchagin <evvers@ya.ru>
a3e2b5
Date: Fri, 26 Oct 2018 10:25:36 +0000
a3e2b5
Subject: [PATCH] lgtm: drop redundant newlines
a3e2b5
a3e2b5
(cherry picked from commit 845702c63863add5606a7a7f00a959ffdcf89635)
a3e2b5
---
a3e2b5
 .lgtm/cpp-queries/fgets.ql | 2 --
a3e2b5
 1 file changed, 2 deletions(-)
a3e2b5
a3e2b5
diff --git a/.lgtm/cpp-queries/fgets.ql b/.lgtm/cpp-queries/fgets.ql
a3e2b5
index 82de8c4482..a4181e4f3d 100644
a3e2b5
--- a/.lgtm/cpp-queries/fgets.ql
a3e2b5
+++ b/.lgtm/cpp-queries/fgets.ql
a3e2b5
@@ -10,13 +10,11 @@
a3e2b5
  */
a3e2b5
 import cpp
a3e2b5
 
a3e2b5
-
a3e2b5
 predicate dangerousFunction(Function function) {
a3e2b5
   exists (string name | name = function.getQualifiedName() |
a3e2b5
     name = "fgets")
a3e2b5
 }
a3e2b5
 
a3e2b5
-
a3e2b5
 from FunctionCall call, Function target
a3e2b5
 where call.getTarget() = target
a3e2b5
   and dangerousFunction(target)