Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #15318 > unrolled thread

Bash-5.0 Official patch 9

Started byChet Ramey <chet.ramey@case.edu>
First post2019-08-14 15:30 -0400
Last post2019-08-14 15:30 -0400
Articles 1 — 1 participant

Back to article view | Back to gnu.bash.bug

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Bash-5.0 Official patch 9 Chet Ramey <chet.ramey@case.edu> - 2019-08-14 15:30 -0400

#15318 — Bash-5.0 Official patch 9

FromChet Ramey <chet.ramey@case.edu>
Date2019-08-14 15:30 -0400
SubjectBash-5.0 Official patch 9
Message-ID<mailman.32.1565811425.30381.bug-bash@gnu.org>
			     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_ */

-- 
``The lyf so short, the craft so long to lerne.'' - Chaucer
		 ``Ars longa, vita brevis'' - Hippocrates
Chet Ramey, UTech, CWRU    chet@case.edu    http://tiswww.cwru.edu/~chet/

[toc] | [standalone]


Back to top | Article view | gnu.bash.bug


csiph-web