diff options
author | stephan <stephan@noemail.net> | 2022-12-03 13:10:58 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-03 13:10:58 +0000 |
commit | 09c27a59db621e621e32e4e90aa2b564dc84c574 (patch) | |
tree | aa7e165330c25a02ce29a5e108d788ff3c77f8fc /ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api | |
parent | 54ac04c8315f8ffc66991cea36d6daa580e8ad8b (diff) | |
download | sqlite-09c27a59db621e621e32e4e90aa2b564dc84c574.tar.gz sqlite-09c27a59db621e621e32e4e90aa2b564dc84c574.zip |
Rename wasm.xWrap.resultAdapter() X:free entries to X:dealloc for consistency with wasm.dealloc(). Add an undocumented feature to replace wasm.alloc/dealloc/realloc() with the C-standard allocators (after an allocator misuse led down a several-hour rabbit hole trying to discover a mis-free() violation). Related test updates.
FossilOrigin-Name: d9807656f8a7c2a893d3f68ee5592f44826b8e999ae66f7d9000674b5c1b0207
Diffstat (limited to 'ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api')
-rw-r--r-- | ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api b/ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api index 1f7908e3b..bbf16215a 100644 --- a/ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api +++ b/ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api @@ -93,3 +93,4 @@ _sqlite3_vfs_register _sqlite3_vfs_unregister _malloc _free +_realloc |