https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201730
Bug ID: 201730
Summary: usr/src/usr.sbin/edquota/edquota.c: multiple resource
leak ?
Product: Base System
Version: 10.2-STABLE
Hardware: Any
OS: Any
Status: New
Severity: Affects Some People
Priority: ---
Component: misc
Assignee: [email protected]
Reporter: [email protected]
1.
[usr/src/usr.sbin/edquota/edquota.c:558]: (error) Resource leak: fd
while (fgets(line1, sizeof (line1), fd) != NULL &&
fgets(line2, sizeof (line2), fd) != NULL) {
if ((fsp = strtok(line1, " \t:")) == NULL) {
warnx("%s: bad format", line1);
return (0);
}
More of the same in the while loop.
2.
[usr/src/usr.sbin/edquota/edquota.c:736]: (error) Resource leak: fd
while (fgets(line1, sizeof (line1), fd) != NULL) {
if ((fsp = strtok(line1, " \t:")) == NULL) {
warnx("%s: bad format", line1);
return (0);
}
Similar code to the above case.
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"