[prev in list] [next in list] [prev in thread] [next in thread] 

List:       net-snmp-cvs
Subject:    [SCM] Net-SNMP branch master updated. v5.8.1.pre2-1554-g1e9835fab1
From:       Bart Van Assche via Net-snmp-cvs <net-snmp-cvs () lists ! sourceforge ! net>
Date:       2022-09-06 2:44:02
Message-ID: 1662432244.489021.8300 () sfp-scm-4 ! v30 ! lw ! sourceforge ! com
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Net-SNMP".

The branch, master has been updated
1e9835fab18e289f973276e46817fd4391a3039c ->
  28255f097ea1b9052ba61b7a63936a31784d0ae8

commit 1e9835fab18e289f973276e46817fd4391a3039c
Author: Bart Van Assche <bvanassche@acm.org>
Date:   Mon Sep 5 18:06:22 2022 -0700

    Use the UTF-8 copyright symbol
    
    Most editors change high-ASCII symbols automatically into UTF-8. Hence this
    patch that changes the 0xa9 byte into 0xc2 0xa9 in source code comments via
    the following command:
    
    sed -i "s/ $(printf \\xa9)/  ©/g" $(git grep -l " $(printf \\xa9)")

commit 4bd0d9a8a2860c2c46307aef5ee1ccc69f7e3b62
Author: JanSoundhouse <jan.sondhauss@wago.com>
Date:   Mon Sep 5 11:25:58 2022 +0200

    unload_all_mibs: fix memory leak by freeing tclist
    
    tclist is always allocated in netsnmp_init_mib_internals, when doing multiple \
init_snmp("")/snmp_shutdown("") this memory is never free'd.

commit 620b346e000882a03009d4afc0cee3cddc7977aa
Author: Bart Van Assche <bvanassche@acm.org>
Date:   Tue Aug 30 20:39:32 2022 -0700

    apps/snmptrap: Initialize the variable 'ss'
    
    Fixes: 0b5e7d6f1532 ("apps: Use netsnmp_cleanup_session()")

commit 0b5e7d6f1532799865df5fde8ed35c02680e716d
Author: Bart Van Assche <bvanassche@acm.org>
Date:   Sun Aug 28 18:11:49 2022 -0700

    apps: Use netsnmp_cleanup_session()
    
    Free the memory allocated by netsnmp_parse_args() before exiting. This reduces
    the number of memory leaks reported by tools like LeakSanitizer.
    
    Ensure that netsnmp_parse_args() only stores pointers to dynamically allocated
    memory in the session object.

commit c7f69858022c268dc2ca8911a11da6ba1e490e15
Author: Bart Van Assche <bvanassche@acm.org>
Date:   Sun Aug 28 18:11:31 2022 -0700

    libsnmp: Introduce netsnmp_cleanup_session()
    
    Free all memory owned by a session instead of only a subset of the memory owned
    by a session.

commit 4055f1276f4701ac64f5ed81d6bb011fa77c476d
Author: Bart Van Assche <bvanassche@acm.org>
Date:   Mon Aug 29 07:08:24 2022 -0700

    testing/fulltests/support/simple_TESTCONF.sh: Stop limiting memory usage
    
    If memory usage is limited, AddressSanitizer fails as follows:
    
    AddressSanitizer failed to allocate ... bytes
    
    Hence remove the memory limit.


Summary of changes:
 agent/agent_handler.c                        |  2 +-
 agent/agent_registry.c                       |  2 +-
 agent/agent_trap.c                           |  6 ++---
 agent/helpers/debug_handler.c                |  2 +-
 agent/helpers/instance.c                     |  2 +-
 agent/helpers/mode_end_call.c                |  2 +-
 agent/helpers/scalar.c                       |  2 +-
 agent/helpers/table.c                        |  2 +-
 agent/helpers/table_iterator.c               |  2 +-
 agent/mibgroup/agentx/master.c               |  2 +-
 agent/mibgroup/agentx/protocol.c             |  2 +-
 agent/mibgroup/host/hr_device.c              |  2 +-
 agent/mibgroup/host/hr_system.c              |  2 +-
 agent/mibgroup/mibII/at.c                    |  2 +-
 agent/mibgroup/mibII/interfaces.c            |  2 +-
 agent/mibgroup/mibII/ipAddr.c                |  2 +-
 agent/mibgroup/mibII/route_write.c           |  2 +-
 agent/mibgroup/mibII/system_mib.c            |  2 +-
 agent/mibgroup/mibII/tcpTable.c              |  2 +-
 agent/mibgroup/mibII/udpTable.c              |  2 +-
 agent/mibgroup/mibII/vacm_conf.c             |  2 +-
 agent/mibgroup/mibII/vacm_vars.c             |  2 +-
 agent/mibgroup/mibII/var_route.c             |  2 +-
 agent/mibgroup/ucd-snmp/diskio.c             |  2 +-
 agent/mibgroup/ucd-snmp/file.c               |  2 +-
 agent/mibgroup/ucd-snmp/logmatch.c           |  2 +-
 agent/mibgroup/utilities/override.c          |  2 +-
 agent/snmp_agent.c                           |  2 +-
 agent/snmp_vars.c                            |  2 +-
 agent/snmpd.c                                |  2 +-
 apps/snmpbulkget.c                           |  1 +
 apps/snmpbulkwalk.c                          |  1 +
 apps/snmpdelta.c                             |  1 +
 apps/snmpdf.c                                |  3 ++-
 apps/snmpget.c                               |  1 +
 apps/snmpgetnext.c                           |  1 +
 apps/snmpnetstat/main.c                      |  1 +
 apps/snmpping.c                              |  1 +
 apps/snmpset.c                               |  1 +
 apps/snmpstatus.c                            |  1 +
 apps/snmptable.c                             |  1 +
 apps/snmptest.c                              |  1 +
 apps/snmptls.c                               |  1 +
 apps/snmptrap.c                              |  4 +++-
 apps/snmpusm.c                               |  5 ++--
 apps/snmpvacm.c                              |  1 +
 apps/snmpwalk.c                              |  1 +
 configure.ac                                 |  2 +-
 configure.d/config_net_snmp_config_h         |  2 +-
 include/net-snmp/agent/agent_handler.h       |  2 +-
 include/net-snmp/agent/snmp_agent.h          |  2 +-
 include/net-snmp/agent/snmp_vars.h           |  2 +-
 include/net-snmp/agent/table.h               |  2 +-
 include/net-snmp/agent/table_iterator.h      |  2 +-
 include/net-snmp/library/data_list.h         |  2 +-
 include/net-snmp/library/snmp_api.h          |  5 +++-
 include/net-snmp/library/system.h            |  2 +-
 include/net-snmp/net-snmp-config.h.in        |  2 +-
 snmplib/Makefile.in                          |  2 +-
 snmplib/callback.c                           |  2 +-
 snmplib/default_store.c                      |  2 +-
 snmplib/keytools.c                           |  2 +-
 snmplib/mib.c                                |  2 +-
 snmplib/parse.c                              |  5 ++--
 snmplib/read_config.c                        |  2 +-
 snmplib/scapi.c                              |  2 +-
 snmplib/snmp_alarm.c                         |  2 +-
 snmplib/snmp_api.c                           | 34 ++++++++++++++++------------
 snmplib/snmp_client.c                        |  2 +-
 snmplib/snmp_logging.c                       |  2 +-
 snmplib/snmp_parse_args.c                    |  2 +-
 snmplib/snmpv3.c                             |  4 ++--
 snmplib/strlcpy.c                            |  2 +-
 snmplib/system.c                             |  2 +-
 snmplib/vacm.c                               |  2 +-
 testing/fulltests/support/simple_TESTCONF.sh |  7 +-----
 76 files changed, 107 insertions(+), 86 deletions(-)


hooks/post-receive
-- 
Net-SNMP





_______________________________________________
Net-snmp-cvs mailing list
Net-snmp-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/net-snmp-cvs


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic