blob: 9fb6ba972b91bb6222767c38999c91d17929f781 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From d3b6303a6853f612a56848ee4e59eaa0b0ab9489 Mon Sep 17 00:00:00 2001
2From: Zhang Xiao <xiao.zhang@windriver.com>
3Date: Tue, 21 Feb 2017 11:30:14 +0800
4Subject: [PATCH] bash: memleak bug fix for builtin command read
5
6Built in command "read" with "-e" use Readline to obtain the line
7in an interactive shell. In this process, a string "rlbuf" is
8just allocated without free operation thus cause memory leak. Fix it.
9
10Upstream-Status: Submitted [http://lists.gnu.org/archive/html/bug-bash/2017-02/msg00061.html]
11
12Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
13---
14 builtins/read.def | 5 +++++
15 1 file changed, 5 insertions(+)
16
17diff --git a/builtins/read.def b/builtins/read.def
18index 4397154..ee0c5a6 100644
19--- a/builtins/read.def
20+++ b/builtins/read.def
21@@ -674,6 +674,11 @@ add_char:
22 input_string[i] = '\0';
23 CHECK_ALRM;
24
25+#if defined (READLINE)
26+ if (edit)
27+ xfree (rlbuf);
28+#endif
29+
30 if (retval < 0)
31 {
32 t_errno = errno;
33--
341.9.1
35