3b5b188591
- selinux_check_passwd_access_internal(): respect deny_unknown - Silence -Wstringop-overflow warning from gcc 10.3.1 - Fixed misc compiler and static analyzer findings Resolves: rhbz#1938789
32 lines
1006 B
Diff
32 lines
1006 B
Diff
From 0a14ec7348a5657fa29d58e03c51500d89cc9908 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
|
|
Date: Mon, 3 May 2021 17:10:46 +0200
|
|
Subject: [PATCH] libselinux: sefcontext_compile: mark local variable static
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The variable `policy_file` is only used in sefcontext_compile.c.
|
|
|
|
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
|
|
---
|
|
libselinux/utils/sefcontext_compile.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libselinux/utils/sefcontext_compile.c b/libselinux/utils/sefcontext_compile.c
|
|
index dcb0085ad67e..6c32172d9944 100644
|
|
--- a/libselinux/utils/sefcontext_compile.c
|
|
+++ b/libselinux/utils/sefcontext_compile.c
|
|
@@ -14,7 +14,7 @@
|
|
#include "../src/label_file.h"
|
|
#include "../src/regex.h"
|
|
|
|
-const char *policy_file;
|
|
+static const char *policy_file;
|
|
static int ctx_err;
|
|
|
|
static int validate_context(char **ctxp)
|
|
--
|
|
2.32.0.rc1
|
|
|