X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsnmp_agent.c;h=2dfa6613d6b253d696da5ab99ed366c0eaad0c2e;hb=711f5b6c86f51061c21bedcaa46214a01de0125c;hp=1c7191ff8bbcad612e0a410163d37798a2e48816;hpb=7c9d772c992647fcba64a96800c146eb9f1647f8;p=collectd.git diff --git a/src/snmp_agent.c b/src/snmp_agent.c index 1c7191ff..2dfa6613 100644 --- a/src/snmp_agent.c +++ b/src/snmp_agent.c @@ -2202,8 +2202,7 @@ static int snmp_agent_register_oid(oid_t *oid, Netsnmp_Node_Handler *handler) { if (c_avl_get(g_agent->registered_oids, (void *)oid, NULL) == 0) return OID_EXISTS; else { - oid_t *new_oid = calloc(1, sizeof(*oid)); - + oid_t *new_oid = calloc(1, sizeof(*new_oid)); if (new_oid == NULL) { ERROR(PLUGIN_NAME ": Could not allocate memory to register new OID"); return -ENOMEM;