Changeset

13182:c48ae06e24d6

util.datamanager: Fix indexing first item if not at the very start If the first item does not start at position 0 then the index function produces a phantom first entry covering position zero until where the real first item starts. When using the index, this would make it either appear as the first item was missing or cause an off-by-one issue with remaining items.
author Kim Alvefur <zash@zash.se>
date Mon, 10 Jul 2023 17:19:05 +0200
parents 13181:87487056bccb
children 13183:33b114fbb5de
files util/datamanager.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/util/datamanager.lua	Wed Jul 12 10:24:28 2023 +0200
+++ b/util/datamanager.lua	Mon Jul 10 17:19:05 2023 +0200
@@ -329,7 +329,7 @@
 		return fh, err, errno;
 	end
 	local prev_pos = 0; -- position before reading
-	local last_item_start = 0;
+	local last_item_start = nil;
 
 	if items and items[1] then
 		local last_item = items[#items];
@@ -340,7 +340,7 @@
 
 	for line in fh:lines() do
 		if line:sub(1, 4) == "item" then
-			if prev_pos ~= 0 then
+			if prev_pos ~= 0 and last_item_start then
 				t_insert(items, { start = last_item_start; length = prev_pos - last_item_start });
 			end
 			last_item_start = prev_pos