diff options
author | Li Zhou <li.zhou@windriver.com> | 2016-11-23 12:10:40 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-12-14 09:20:09 -0500 |
commit | a0ee08d75ca3ee4e6a2eac4079f39e2e52e56aef (patch) | |
tree | 3558442db4bb4d240b497077e4adb37f3dea2907 /meta-networking/recipes-protocols/net-snmp/net-snmp | |
parent | 50169dcce2a65e3e48505c821d2a49d52f94f572 (diff) | |
download | meta-openembedded-a0ee08d75ca3ee4e6a2eac4079f39e2e52e56aef.tar.gz |
net-snmp: snmplib, UDPIPv6 transport: Add a missing return statement
Backport a succeeding commit from net-snmp upstream to fix the issue
introduced by commit
<BUG#a2584: Fix snmptrap to use clientaddr from snmp.conf>.
The missing return will cause crash when binding to a non-exist IPv6
address.
Signed-off-by: Li Zhou <li.zhou@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-protocols/net-snmp/net-snmp')
-rw-r--r-- | meta-networking/recipes-protocols/net-snmp/net-snmp/0001-snmplib-UDPIPv6-transport-Add-a-missing-return-state.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-snmplib-UDPIPv6-transport-Add-a-missing-return-state.patch b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-snmplib-UDPIPv6-transport-Add-a-missing-return-state.patch new file mode 100644 index 000000000..6255f7ced --- /dev/null +++ b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-snmplib-UDPIPv6-transport-Add-a-missing-return-state.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 1ee72102fbe722d232d74abc4660a8b134cec8d6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Bart Van Assche <bvanassche@acm.org> | ||
3 | Date: Sat, 23 May 2015 07:32:53 +0200 | ||
4 | Subject: [PATCH] snmplib, UDPIPv6 transport: Add a missing return statement | ||
5 | |||
6 | Detected by Coverity. | ||
7 | |||
8 | Upstream-Status: backport | ||
9 | |||
10 | Signed-off-by: Li Zhou <li.zhou@windriver.com> | ||
11 | --- | ||
12 | snmplib/transports/snmpUDPIPv6Domain.c | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/snmplib/transports/snmpUDPIPv6Domain.c b/snmplib/transports/snmpUDPIPv6Domain.c | ||
16 | index 029b164..11c39bb 100644 | ||
17 | --- a/snmplib/transports/snmpUDPIPv6Domain.c | ||
18 | +++ b/snmplib/transports/snmpUDPIPv6Domain.c | ||
19 | @@ -285,6 +285,7 @@ netsnmp_udp6_transport(struct sockaddr_in6 *addr, int local) | ||
20 | errno, strerror(errno))); | ||
21 | netsnmp_socketbase_close(t); | ||
22 | netsnmp_transport_free(t); | ||
23 | + return NULL; | ||
24 | } | ||
25 | } | ||
26 | /* | ||
27 | -- | ||
28 | 2.9.3 | ||
29 | |||