components/net-snmp/patches/007.16863.patch
changeset 1650 ce501c11d5fa
parent 1649 81d624418adc
child 1651 0e3a608a1823
--- a/components/net-snmp/patches/007.16863.patch	Wed Jan 22 01:46:00 2014 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-Index: net-snmp/snmplib/asn1.c
-===================================================================
---- net-snmp/snmplib/asn1.c	(revision 16862)
-+++ net-snmp/snmplib/asn1.c	(revision 16863)
-@@ -2735,7 +2735,7 @@
-     }
- 
-     CHECK_OVERFLOW_S(integer,10);
--    testvalue = (*intp < 0) ? -1 : 0;
-+    testvalue = (integer < 0) ? -1 : 0;
- 
-     if (((*pkt_len - *offset) < 1) && !(r && asn_realloc(pkt, pkt_len))) {
-         return 0;