MFC r300666

Call closedir() before returning from fetchListFile() to avoid a leak.

Reported by:	Coverity
CID:		1016697
This commit is contained in:
Don Lewis 2016-06-01 17:45:00 +00:00
parent dee32aa9c8
commit 44ffc0c54a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=301154

View File

@ -149,5 +149,6 @@ fetchListFile(struct url *u, const char *flags __unused)
fetch_add_entry(&ue, &size, &len, de->d_name, &us);
}
closedir(dir);
return (ue);
}