net-snmp 3.5.4 → 3.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -3150,6 +3150,10 @@ Example programs are included under the module's `example` directory.
3150
3150
 
3151
3151
  * Align accessible-for-notify row cell behaviour with not-accessible behaviour
3152
3152
 
3153
+ ## Version 3.5.5 - 29/09/2021
3154
+
3155
+ * Add missing return in getbulk feedCb callback non-repeaters error condition
3156
+
3153
3157
  # License
3154
3158
 
3155
3159
  Copyright (c) 2020 Mark Abrahams <mark@abrahams.co.nz>
package/index.js CHANGED
@@ -1923,6 +1923,7 @@ Session.prototype.getBulk = function () {
1923
1923
  + "response '" + pdu.varbinds.length + "' is less than "
1924
1924
  + "non-repeaters '" + nonRepeaters + "' in request",
1925
1925
  ResponseInvalidCode.ENonRepeaterCountMismatch));
1926
+ return;
1926
1927
  } else {
1927
1928
  for ( ; i < nonRepeaters; i++) {
1928
1929
  if (isVarbindError (pdu.varbinds[i])) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "net-snmp",
3
- "version": "3.5.4",
3
+ "version": "3.5.5",
4
4
  "description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",
5
5
  "main": "index.js",
6
6
  "directories": {