From 48260cbf0940593d2c1e9779ee729c5acddfbd1c Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Fri, 23 Jan 2026 21:01:30 +0000 Subject: [PATCH] Revert "fix: 'SQLITE_CONFIG_URI' not being set on 'LoadPlugins'" This reverts commit df221617c0756809040b183c872bbc4edf1858ba. --- src/main.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8d5b27255..c9494198f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1382,16 +1382,7 @@ static void LoadPlugins() { GloMyLdapAuth = NULL; if (proxy_sqlite3_open_v2 == nullptr) { SQLite3DB::LoadPlugin(GloVars.sqlite3_plugin); - } else { - int i= (*proxy_sqlite3_config)(SQLITE_CONFIG_URI, 1); - - if (i != SQLITE_OK) { - fprintf(stderr,"SQLITE: Error on (*proxy_sqlite3_config)(SQLITE_CONFIG_URI,1)\n"); - assert(i==SQLITE_OK); - exit(EXIT_FAILURE); - } } - if (GloVars.web_interface_plugin) { dlerror(); char * dlsym_error = NULL;