diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-08-15 19:00:16 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-08-16 08:59:44 +0200 |
commit | 6a3145aa203db84051c98387c02099d54bc0bb59 (patch) | |
tree | 66875dcf50b9edb33a607bcc2f9bd31453233d3e /source/a/bash/bash-5.0-patches/bash50-009 | |
parent | 056f3dae0cea2adce7f128155d1031a9f7c9c1dd (diff) | |
download | current-6a3145aa203db84051c98387c02099d54bc0bb59.tar.gz |
Thu Aug 15 19:00:16 UTC 201920190815190016
a/bash-5.0.009-x86_64-1.txz: Upgraded.
ap/vim-8.1.1847-x86_64-1.txz: Upgraded.
d/distcc-3.3.3-x86_64-1.txz: Upgraded.
l/elfutils-0.177-x86_64-1.txz: Upgraded.
xap/vim-gvim-8.1.1847-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a/bash/bash-5.0-patches/bash50-009')
-rw-r--r-- | source/a/bash/bash-5.0-patches/bash50-009 | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/source/a/bash/bash-5.0-patches/bash50-009 b/source/a/bash/bash-5.0-patches/bash50-009 new file mode 100644 index 00000000..aef4ce7b --- /dev/null +++ b/source/a/bash/bash-5.0-patches/bash50-009 @@ -0,0 +1,42 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 5.0 +Patch-ID: bash50-009 + +Bug-Reported-by: chet.ramey@case.edu +Bug-Reference-ID: +Bug-Reference-URL: + +Bug-Description: + +The history file reading code doesn't close the file descriptor open to +the history file when it encounters a zero-length file. + +Patch (apply with `patch -p0'): + +*** ../bash-5.0-patched/lib/readline/histfile.c 2018-06-11 09:14:52.000000000 -0400 +--- lib/readline/histfile.c 2019-05-16 15:55:57.000000000 -0400 +*************** +*** 306,309 **** +--- 312,316 ---- + { + free (input); ++ close (file); + return 0; /* don't waste time if we don't have to */ + } +*** ../bash-5.0/patchlevel.h 2016-06-22 14:51:03.000000000 -0400 +--- patchlevel.h 2016-10-01 11:01:28.000000000 -0400 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 8 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 9 + + #endif /* _PATCHLEVEL_H_ */ |