New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

net-snmp

Package Overview
Dependencies
Maintainers
2
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

net-snmp - npm Package Compare versions

Comparing version 3.9.3 to 3.9.4

11

lib/mib.js

@@ -170,11 +170,12 @@ var fs = require('fs');

this.CharBuffer.nested++;
if ( char == '(') {
if (char == '(' || char == '{') {
// Emit the previous token if this is the start of an outer group
if (this.CharBuffer.nested === 1) {
this.CharBuffer.Fill(FileName, row, column);
}
this.CharBuffer.inGroup++;
}
}
if (this.CharBuffer.builder == 'INTEGER') {
this.CharBuffer.Fill(FileName, row, column);
if (this.CharBuffer.isComment || ((this.CharBuffer.isOID || this.CharBuffer.nested > 0) && (!this.CharBuffer.isList || this.CharBuffer.inGroup > 0))) {
this.CharBuffer.Append(char);
} else if (this.CharBuffer.isComment || ((this.CharBuffer.isOID || this.CharBuffer.nested > 0) && (!this.CharBuffer.isList || this.CharBuffer.inGroup > 0))) {
this.CharBuffer.Append(char);
} else {

@@ -181,0 +182,0 @@ this.CharBuffer.Fill(FileName, row, column);

{
"name": "net-snmp",
"version": "3.9.3",
"version": "3.9.4",
"description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc