On Sun, Jul 28, 2019 at 10:29 PM Ondrej Mosnacek <omosnace@xxxxxxxxxx> wrote: > > On Sun, Jul 28, 2019 at 8:38 PM Nicolas Iooss <nicolas.iooss@xxxxxxx> wrote: > > Function optimize_cond_av_list() initializes its local variable pcov_cur > > twice. Remove the first initialization. > > > > This issue has been found using clang's static analyzer: > > https://282-118970575-gh.circle-artifacts.com/0/output-scan-build/2019-06-24-210510-6101-1/report-c64da3.html#EndPath > > > > Signed-off-by: Nicolas Iooss <nicolas.iooss@xxxxxxx> > > Acked-by: Ondrej Mosnacek <omosnace@xxxxxxxxxx> Thanks, merged. Nicolas > > --- > > libsepol/src/optimize.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/libsepol/src/optimize.c b/libsepol/src/optimize.c > > index 3780b68b24fe..10399a43e1cf 100644 > > --- a/libsepol/src/optimize.c > > +++ b/libsepol/src/optimize.c > > @@ -247,7 +247,7 @@ static void optimize_cond_av_list(cond_av_list_t **cond, cond_av_list_t **del, > > { > > cond_av_list_t **listp = cond; > > cond_av_list_t *pcov = NULL; > > - cond_av_list_t **pcov_cur = &pcov; > > + cond_av_list_t **pcov_cur; > > > > /* > > * Separate out all "potentially covering" rules (src or tgt is an attr) > > -- > > 2.22.0 > > > > -- > Ondrej Mosnacek <omosnace at redhat dot com> > Software Engineer, Security Technologies > Red Hat, Inc.