CVSROOT: /cvs Module name: src Changes by: mart...@cvs.openbsd.org 2023/12/18 02:42:57
Modified files: usr.sbin/snmpd : application_internal.c Log message: Fix two memory leaks: - MIB_snmpInReadOnlys was tried to be registered twice, leading to a leak of the second instance. Prevent this mistake in the future by making a double registration fatal. - The response buffer is owned by the backend, so the backend must also free it. OK tb@