From patchwork Thu Nov 25 18:16:49 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4853 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4J0R0p64lhz3wsg for ; Thu, 25 Nov 2021 18:16:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4J0R0p3YXCz15N; Thu, 25 Nov 2021 18:16:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4J0R0p3FNcz2yWX; Thu, 25 Nov 2021 18:16:58 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4J0R0m5H6Zz2xbv for ; Thu, 25 Nov 2021 18:16:56 +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 ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4J0R0m0NzlzxQ; Thu, 25 Nov 2021 18:16:56 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1637864216; 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; bh=lNEs7Rz1FP3lzQIbgqUgv7rTVuFK+oj+6Zs1z9BhGW4=; b=oDH9yDJeAkSoRREOS7Q9vtiV+7L8IDYYN8jxQjItos6MbDiYFDUcyPLQrf+zke5m/XJyRl GJaHPRyjycGL5BAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1637864216; 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; bh=lNEs7Rz1FP3lzQIbgqUgv7rTVuFK+oj+6Zs1z9BhGW4=; b=OHHbps2tZ17C8QQxcWeyWJ7ucmAHFFhAmueyLVRMJ3dU1O2l9RNt73ykIdHtxd06s1bgic JXZhcG5BOppaz5AiO9bYh7EYj7O3W1TNwLaKvQ7MjcAKyB1Bmde4friI+s2/v/WWBhsFn9 xsy55in6bAsqxkT58V/MeUXQZNXY4/vkfcmB3BeClCciJtT0P3BIKh+avPAo7OUhtwRqBF nHeImf4uDfd5iUiw27BvzbjaNUlEe/9qozVwlOui98CU8YQP0FsrX+54S2EwwZ1MQVN+VE 52bsqdtEcEQIY5FetlnT+/onEC8cuUQdwl4Rxq68Bsn/bm17Xnq9RzwmiJmxrw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] exfatprogs: Update to version 1.1.3 Date: Thu, 25 Nov 2021 19:16:49 +0100 Message-Id: <20211125181649.1307250-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 1.1.2 to 1.1.3 - Update of rootfile not required - Changelog Version 1.1.3 - released 2021-11-11 CHANGES : * mkfs.exfat: ensure that the cluster size is greater than or equal than the sector size. * mkfs.exfat: replace lseek() + write() with pwrite(). BUG FIXES : * mkfs.exfat: prevent an integer overflow when computing the FAT length. * fsck.exfat: fix a double free memory error. Signed-off-by: Adolf Belka Reviewed-by: Michael Tremer --- lfs/exfatprogs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/exfatprogs b/lfs/exfatprogs index 7b257f168..ca39f5637 100644 --- a/lfs/exfatprogs +++ b/lfs/exfatprogs @@ -24,7 +24,7 @@ include Config -VER = 1.1.2 +VER = 1.1.3 THISAPP = exfatprogs-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 20c6caa98a0ad7d073c045628807a884 +$(DL_FILE)_MD5 = 3defa9fd5949b934c1f68cba7e767193 install : $(TARGET)