From 037284caf7a50fe03d6760101fe7f8c5d4612dfb Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 7 Jun 2019 15:21:48 +0000 Subject: [PATCH] PR/54281: Jonathan Perkins: NUL terminate rl_line_buffer on modification to avoid completion leak. --- lib/libedit/readline.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libedit/readline.c b/lib/libedit/readline.c index 52180f3cf27f..11d8937fe515 100644 --- a/lib/libedit/readline.c +++ b/lib/libedit/readline.c @@ -1,4 +1,4 @@ -/* $NetBSD: readline.c,v 1.154 2019/06/07 15:19:29 christos Exp $ */ +/* $NetBSD: readline.c,v 1.155 2019/06/07 15:21:48 christos Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include "config.h" #if !defined(lint) && !defined(SCCSID) -__RCSID("$NetBSD: readline.c,v 1.154 2019/06/07 15:19:29 christos Exp $"); +__RCSID("$NetBSD: readline.c,v 1.155 2019/06/07 15:21:48 christos Exp $"); #endif /* not lint && not SCCSID */ #include @@ -2237,6 +2237,7 @@ _rl_update_pos(void) rl_point = (int)(li->cursor - li->buffer); rl_end = (int)(li->lastchar - li->buffer); + rl_line_buffer[rl_end] = '\0'; } void