From 83bdf6cdf14465efa905fd8361d6b1bc0a17322c Mon Sep 17 00:00:00 2001
From: "Sven M. Hallberg" <pesco@khjk.org>
Date: Tue, 28 Mar 2023 17:43:38 +0000
Subject: [PATCH] remove superfluous assignment

How did that get in there? The very next line overwrites it.
---
 pdf.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pdf.c b/pdf.c
index c50cea5..aea09f8 100644
--- a/pdf.c
+++ b/pdf.c
@@ -4927,7 +4927,6 @@ parse_xrefs(struct Env *aux)
 
 	for (;;) {
 		//res = h_parse(p_xref, input + offset, sz - offset);
-		p = NULL;
 		p = h_right(h_seek(offset * 8, SEEK_SET), p_xref);	// XXX
 		res = h_parse(p, input, sz);
 		if (res == NULL || res->ast == NULL || H_INDEX_TOKEN(res->ast, 0) == NULL) {
-- 
GitLab