From 1039b09c0c897731b2fbd8b1fb14bf6155007ab5 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 11 Apr 2022 23:26:57 +0200 Subject: 50042: Another fix for 49915 If the last element in the list is a duplicate, we would walk off the end --- Src/Zle/compcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index fe3ea10fc..4ac5d089f 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -3314,7 +3314,7 @@ makearray(LinkList l, int type, int flags, int *np, int *nlp, int *llp) if (del) { int n_orig = n; for (bp = rp, ap = rp; bp < rp + n_orig; ap++, bp++) { - while (bp[0]->flags & CMF_DELETE) { + while (bp < rp + n_orig && (bp[0]->flags & CMF_DELETE)) { bp++; n--; } -- cgit 1.4.1