Socket
Socket
Sign inDemoInstall

lmdb

Package Overview
Dependencies
Maintainers
3
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lmdb - npm Package Compare versions

Comparing version 2.9.3-beta.4-debug to 2.9.3-beta.5-debug

14

package.json
{
"name": "lmdb",
"author": "Kris Zyp",
"version": "2.9.3-beta.4-debug",
"version": "2.9.3-beta.5-debug",
"description": "Simple, efficient, scalable, high-performance LMDB interface",

@@ -113,9 +113,9 @@ "license": "MIT",

"optionalDependencies": {
"@lmdb/lmdb-darwin-arm64": "2.9.3-beta.4-debug",
"@lmdb/lmdb-darwin-x64": "2.9.3-beta.4-debug",
"@lmdb/lmdb-linux-arm": "2.9.3-beta.4-debug",
"@lmdb/lmdb-linux-arm64": "2.9.3-beta.4-debug",
"@lmdb/lmdb-linux-x64": "2.9.3-beta.4-debug",
"@lmdb/lmdb-win32-x64": "2.9.3-beta.4-debug"
"@lmdb/lmdb-darwin-arm64": "2.9.3-beta.5-debug",
"@lmdb/lmdb-darwin-x64": "2.9.3-beta.5-debug",
"@lmdb/lmdb-linux-arm": "2.9.3-beta.5-debug",
"@lmdb/lmdb-linux-arm64": "2.9.3-beta.5-debug",
"@lmdb/lmdb-linux-x64": "2.9.3-beta.5-debug",
"@lmdb/lmdb-win32-x64": "2.9.3-beta.5-debug"
}
}

@@ -97,2 +97,5 @@ import { RangeIterable } from './util/RangeIterable.js';

outstandingReads++;
if (!txn.address) {
throw new Error('Invalid transaction, it has no address');
}
let address = recordReadInstruction(txn.address, this.db.dbi, id, this.writeKey, maxKeySize, ( rc, bufferId, offset, size ) => {

@@ -416,2 +419,5 @@ if (rc && rc !== 1)

txnAddress = txn.address;
if (!txnAddress) {
throw new Error('Invalid transaction, it has no address');
}
cursor = null;

@@ -418,0 +424,0 @@ } else {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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