From 23a5eb5e2ade5382d6b54e6d41ad81b1d31682b1 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Sat, 10 Aug 2024 09:11:41 +0200 Subject: [PATCH] Update sqlite Allocate additional memory from the heap for the SQL parser stack if that stack overflows, rather than reporting a "parser stack overflow" error. Complete change list:: https://www.sqlite.org/releaselog/3_46_0.html Signed-off-by: mosfet80 --- sqlite3_vendor/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite3_vendor/CMakeLists.txt b/sqlite3_vendor/CMakeLists.txt index 578a995ed..4f4572702 100644 --- a/sqlite3_vendor/CMakeLists.txt +++ b/sqlite3_vendor/CMakeLists.txt @@ -15,8 +15,8 @@ endif() ament_vendor(sqlite3_vendor SATISFIED ${SQLite3_FOUND} VCS_TYPE zip - VCS_URL https://www.sqlite.org/2024/sqlite-amalgamation-3450100.zip - VCS_VERSION sqlite-amalgamation-3450100 + VCS_URL https://www.sqlite.org/2024/sqlite-amalgamation-3460000.zip + VCS_VERSION sqlite-amalgamation-3460000 CMAKE_ARGS ${CMAKE_ARGS} PATCHES patches )