On Tue, Oct 22, 2024 at 5:09 AM Vit Mojzis <vmojzis@xxxxxxxxxx> wrote: > > tmp.node was not always initialized before being used by > ebitmap_destroy. > > Fixes: > Error: UNINIT (CWE-457): > libsepol-3.7/cil/src/cil_post.c:1309:2: var_decl: Declaring variable "tmp" without initializer. > libsepol-3.7/cil/src/cil_post.c:1382:6: uninit_use_in_call: Using uninitialized value "tmp.node" when calling "ebitmap_destroy". > \# 1380| if (rc != SEPOL_OK) { > \# 1381| cil_log(CIL_INFO, "Failed to apply operator to bitmaps\n"); > \# 1382|-> ebitmap_destroy(&tmp); > \# 1383| goto exit; > \# 1384| } > > Signed-off-by: Vit Mojzis <vmojzis@xxxxxxxxxx> > --- > libsepol/cil/src/cil_post.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libsepol/cil/src/cil_post.c b/libsepol/cil/src/cil_post.c > index ac99997f..c8dbfd3e 100644 > --- a/libsepol/cil/src/cil_post.c > +++ b/libsepol/cil/src/cil_post.c > @@ -1306,7 +1306,7 @@ static int __cil_expr_to_bitmap(struct cil_list *expr, ebitmap_t *out, int max, > int rc = SEPOL_ERR; > struct cil_list_item *curr; > enum cil_flavor flavor; > - ebitmap_t tmp, b1, b2; > + ebitmap_t tmp = {.node = NULL}, b1, b2; > > if (expr == NULL || expr->head == NULL) { > return SEPOL_OK; I would rather have "ebitmap_init(&tmp);" here. That is how we normally initialize an ebitmap. Thanks, Jim > -- > 2.47.0 > >