diff options
author | Zhang Xiao <xiao.zhang@windriver.com> | 2017-08-25 08:42:38 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-27 22:29:44 +0100 |
commit | a2b278a6eaa9e9b48d858e3be6712267c0122598 (patch) | |
tree | 8aae146994ea4cb6dcac67461a1714530be25ecc /meta/recipes-extended/bash/bash_4.4.bb | |
parent | a615b0825927a09a0aa8312d131c9acbaef8956d (diff) | |
download | openembedded-core-contrib-a2b278a6eaa9e9b48d858e3be6712267c0122598.tar.gz |
bash: memleak bug fix for builtin command read
Built in command "read" with "-e" use Readline to obtain the line
in an interactive shell. In this process, a string "rlbuf" is
just allocated without free operation thus cause memory leak.
This patch had been submitted to upstream:
http://lists.gnu.org/archive/html/bug-bash/2017-02/msg00061.html
Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bash/bash_4.4.bb')
-rw-r--r-- | meta/recipes-extended/bash/bash_4.4.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash_4.4.bb b/meta/recipes-extended/bash/bash_4.4.bb index b602afe8acb..e544d07c10e 100644 --- a/meta/recipes-extended/bash/bash_4.4.bb +++ b/meta/recipes-extended/bash/bash_4.4.bb @@ -25,6 +25,7 @@ SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \ file://run-ptest \ file://fix-run-builtins.patch \ file://0001-help-fix-printf-format-security-warning.patch \ + file://bash-memleak-bug-fix-for-builtin-command-read.patch \ " SRC_URI[tarball.md5sum] = "148888a7c95ac23705559b6f477dfe25" |