mirror of
https://github.com/topjohnwu/selinux.git
synced 2025-03-02 00:16:06 +00:00
cil_write_ast.c: fix compile time error
Fix compile time error in Android specific code. ../cil/src/cil_write_ast.c: In function ‘__cil_write_node_helper’: ../cil/src/cil_write_ast.c:1156:17: error: variable ‘db’ set but not used [-Werror=unused-but-set-variable] struct cil_db *db = NULL; ^~ ../cil/src/cil_write_ast.c: In function ‘__cil_write_last_child_helper’: ../cil/src/cil_write_ast.c:1465:17: error: variable ‘db’ set but not used [-Werror=unused-but-set-variable] struct cil_db *db = NULL; ^~ Test: compiles Change-Id: I0af0e896ba1591ef43726dbee9906d581390e1f3
This commit is contained in:
parent
df5204a030
commit
13030b2fd3
@ -1153,7 +1153,6 @@ exit:
|
||||
static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args)
|
||||
{
|
||||
int rc = SEPOL_OK;
|
||||
struct cil_db *db = NULL;
|
||||
struct cil_args_write *args = NULL;
|
||||
FILE *cil_out = NULL;
|
||||
|
||||
@ -1162,7 +1161,6 @@ static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finishe
|
||||
}
|
||||
|
||||
args = extra_args;
|
||||
db = args->db;
|
||||
cil_out = args->cil_out;
|
||||
|
||||
switch (node->flavor) {
|
||||
@ -1462,7 +1460,6 @@ exit:
|
||||
static int __cil_write_last_child_helper(struct cil_tree_node *node, void *extra_args)
|
||||
{
|
||||
int rc = SEPOL_ERR;
|
||||
struct cil_db *db = NULL;
|
||||
struct cil_args_write *args = NULL;
|
||||
FILE *cil_out = NULL;
|
||||
|
||||
@ -1471,7 +1468,6 @@ static int __cil_write_last_child_helper(struct cil_tree_node *node, void *extra
|
||||
}
|
||||
|
||||
args = extra_args;
|
||||
db = args->db;
|
||||
cil_out = args->cil_out;
|
||||
|
||||
if (node->parent && node->parent->flavor != CIL_ROOT && node->parent->flavor != CIL_SRC_INFO) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user