lib/gshadow.c: build_list(): Remove dead assignment

Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar
2024-11-05 14:50:35 +01:00
committed by Serge Hallyn
parent f3464103fb
commit de4715d978

View File

@@ -39,7 +39,7 @@ static struct sgrp sgroup;
static /*@null@*/char **
build_list(char *s, char ***lp, size_t *np)
{
char **l = *lp;
char **l;
size_t n = *np;
while (s != NULL && *s != '\0') {