mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
snmp_hostres(3): Fix buffer overflow.
Actually just a typo. Detected by gcc + FORTIFY_SOURCE patches. CID: 1007594 MFC after: 3 days
This commit is contained in:
parent
62c31cffae
commit
d37cb73c79
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285719
@ -175,7 +175,7 @@ get_printer_status(const struct printer *pp)
|
||||
goto LABEL_DONE;
|
||||
}
|
||||
|
||||
memset(&fline[0], '\0', sizeof(line));
|
||||
memset(&fline[0], '\0', sizeof(fline));
|
||||
if (fgets(fline, sizeof(fline) -1, f) == NULL) {
|
||||
ps = PS_UNKNOWN;
|
||||
goto LABEL_DONE;
|
||||
|
Loading…
Reference in New Issue
Block a user