Commit ced89f60 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Rename variable to deconfuse Coverity

parent 503a72ed
...@@ -100,14 +100,14 @@ VSL_New(void) ...@@ -100,14 +100,14 @@ VSL_New(void)
} }
static void static void
vsl_IX_free(vslf_list *list) vsl_IX_free(vslf_list *filters)
{ {
struct vslf *vslf; struct vslf *vslf;
while (!VTAILQ_EMPTY(list)) { while (!VTAILQ_EMPTY(filters)) {
vslf = VTAILQ_FIRST(list); vslf = VTAILQ_FIRST(filters);
CHECK_OBJ_NOTNULL(vslf, VSLF_MAGIC); CHECK_OBJ_NOTNULL(vslf, VSLF_MAGIC);
VTAILQ_REMOVE(list, vslf, list); VTAILQ_REMOVE(filters, vslf, list);
if (vslf->tags) if (vslf->tags)
vbit_destroy(vslf->tags); vbit_destroy(vslf->tags);
AN(vslf->vre); AN(vslf->vre);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment