patch 7.4.2357
Problem: Attempt to read history entry while not initialized.
Solution: Skip when the index is negative.
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 4ff9ae1..25a12be 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -5762,7 +5762,7 @@
*/
if (histype == HIST_SEARCH && in_map)
{
- if (maptick == last_maptick)
+ if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
{
/* Current line is from the same mapping, remove it */
hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];