From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4c2DPX1Czfz2xS5 for ; Wed, 13 Aug 2025 16:30:24 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4c2DPS43Drz307j for ; Wed, 13 Aug 2025 16:30:20 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4c2DPR3Wt8z1YF; Wed, 13 Aug 2025 16:30:19 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1755102619; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RP93IENnssZmJJNcNaXoSA6mRy+eiUraWOeA5SeN+44=; b=UxJIoIEvXXpih7lralSpkniTvoquMm4UaY+FGgvVR17tEuuhB89pN2TlXmNafnwZ0HEijV rfjGXfESrbzob6AQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1755102619; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RP93IENnssZmJJNcNaXoSA6mRy+eiUraWOeA5SeN+44=; b=OjpsTT7kX7Vv9hCg1Xbsjz8hXyGcmST7US3h4FzxC811ZEkVz1+NGu6aD+cFn8NEjiXg4S 3/60I3oOUfXWmjervwQCUgrs5h7rWiY+1YY/tISlndnMzbOtxe6moNtnFOr0iOZZZWwsUJ PAxo/x784YudqTkwQI4y5d1zSibTF6b/umlMO5bjtVaelRRU3NGQPLx++uI1Zn11nLa6o/ JEvZrBOSkMYEX2qCra8xXuggk37gFoSvHv2UgAa5zWqD0n2kNCtWTVG85Ue88zRd3FvgXS XxwOwVkmvVZLuijCs7EeE2i64S0XPjhoqd+VhlfJHHaZXc1LWep9Ksnt944bzg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] sqlite: Update to version 3500400 Date: Wed, 13 Aug 2025 18:30:14 +0200 Message-ID: <20250813163015.3759664-5-adolf.belka@ipfire.org> In-Reply-To: <20250813163015.3759664-1-adolf.belka@ipfire.org> References: <20250813163015.3759664-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 3500200 to 3500400 - Update of rootfile - Changelog 3500400 Fix two long-standings cases of the use of uninitialized variables in obscure circumstances. 3500300 Fix a possible memory error that can occur if a query is made against against FTS5 index that has been deliberately corrupted in a very specific way. Fix the parser so that it ignored SQL comments in all places of a CREATE TRIGGER statement. This resolves a problem that was introduced by the introduction of the SQLITE_DBCONFIG_ENABLE_COMMENTS feature in version 3.49.0. Fix an incorrect answer due to over-optimization of an AND operator. Forum post f4878de3e. Fix minor makefile issues and documentation typos. Signed-off-by: Adolf Belka --- config/rootfiles/common/sqlite | 2 +- lfs/sqlite | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/rootfiles/common/sqlite b/config/rootfiles/common/sqlite index dc8e79843..1c63b682f 100644 --- a/config/rootfiles/common/sqlite +++ b/config/rootfiles/common/sqlite @@ -3,6 +3,6 @@ usr/bin/sqlite3 #usr/include/sqlite3ext.h usr/lib/libsqlite3.so usr/lib/libsqlite3.so.0 -usr/lib/libsqlite3.so.3.50.2 +usr/lib/libsqlite3.so.3.50.4 #usr/lib/pkgconfig/sqlite3.pc #usr/share/man/man1/sqlite3.1 diff --git a/lfs/sqlite b/lfs/sqlite index be1bd4033..fb3554d5d 100644 --- a/lfs/sqlite +++ b/lfs/sqlite @@ -24,7 +24,7 @@ include Config -VER = 3500200 +VER = 3500400 THISAPP = sqlite-autoconf-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 0e4f2da8d11173f32625bbfa9fa07c3dcccc5343c410c9c10da47c9df7eeecaf33726d8e5fddf2ef78ce51a1adf0fe605a81278e2fc0d6044264ecf40f05bdfa +$(DL_FILE)_BLAKE2 = cb7b3509079a6b57dd7a0443e249b8fe6d1ff43b1bb318d07a1403a754ddbfa5d25f191405c062a5cdb872315aac78daa1e95d6687aab37e18889e21bc6d8c71 install : $(TARGET) -- 2.50.1