1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Correct fiddle db export breakage caused by a post-testing API change made in [1fa019c88dea].

FossilOrigin-Name: e73cc44ec36c7585ebb914bdeed5b39480fca7c7a8d3c4426bfe769c87b98d17
This commit is contained in:
stephan
2022-10-01 19:21:52 +00:00
parent f446af57b5
commit f064a3bbe4
3 changed files with 8 additions and 8 deletions

View File

@ -941,7 +941,7 @@ self.sqlite3ApiBootstrap = function sqlite3ApiBootstrap(
if(!pDb) toss('Invalid sqlite3* argument.');
const wasm = capi.wasm;
if(!wasm.bigIntEnabled) toss('BigInt64 support is not enabled.');
const stack = wasm.pstack.pointer();
const stack = wasm.pstack.pointer;
let pOut;
try{
const pSize = wasm.pstack.alloc(8/*i64*/ + wasm.ptrSizeof);