svn commit: r299018 - stable/10/contrib/bsnmp/snmpd
Garrett Cooper
ngie at FreeBSD.org
Wed May 4 00:25:22 UTC 2016
Author: ngie
Date: Wed May 4 00:25:20 2016
New Revision: 299018
URL: https://svnweb.freebsd.org/changeset/base/299018
Log:
MFC r298448,r298464:
r298448:
Don't leak `string` in parse_define(..) when a macro has been found
and the parser token != TOK_ASSIGN
CID: 1007187, 1007188
Obtained from: Isilon OneFS (part of r445479)
r298464:
Use `sizeof(*uuser)` instead of `sizeof(struct usm_user)` for consistency with
the rest of the users in the file
No functional change
Modified:
stable/10/contrib/bsnmp/snmpd/config.c
stable/10/contrib/bsnmp/snmpd/main.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/contrib/bsnmp/snmpd/config.c
==============================================================================
--- stable/10/contrib/bsnmp/snmpd/config.c Wed May 4 00:19:46 2016 (r299017)
+++ stable/10/contrib/bsnmp/snmpd/config.c Wed May 4 00:25:20 2016 (r299018)
@@ -1150,7 +1150,8 @@ parse_define(const char *varname)
free(m->value);
m->value = string;
m->length = length;
- }
+ } else
+ free(string);
}
token = TOK_EOL;
Modified: stable/10/contrib/bsnmp/snmpd/main.c
==============================================================================
--- stable/10/contrib/bsnmp/snmpd/main.c Wed May 4 00:19:46 2016 (r299017)
+++ stable/10/contrib/bsnmp/snmpd/main.c Wed May 4 00:25:20 2016 (r299018)
@@ -2813,7 +2813,7 @@ usm_new_user(uint8_t *eid, uint32_t elen
if ((uuser = (struct usm_user *)malloc(sizeof(*uuser))) == NULL)
return (NULL);
- memset(uuser, 0, sizeof(struct usm_user));
+ memset(uuser, 0, sizeof(*uuser));
strlcpy(uuser->suser.sec_name, uname, SNMP_ADM_STR32_SIZ);
memcpy(uuser->user_engine_id, eid, elen);
uuser->user_engine_len = elen;
More information about the svn-src-stable
mailing list