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)
}
static void
vsl_IX_free(vslf_list *list)
vsl_IX_free(vslf_list *filters)
{
struct vslf *vslf;
while (!VTAILQ_EMPTY(list)) {
vslf = VTAILQ_FIRST(list);
while (!VTAILQ_EMPTY(filters)) {
vslf = VTAILQ_FIRST(filters);
CHECK_OBJ_NOTNULL(vslf, VSLF_MAGIC);
VTAILQ_REMOVE(list, vslf, list);
VTAILQ_REMOVE(filters, vslf, list);
if (vslf->tags)
vbit_destroy(vslf->tags);
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