Skip to content

Commit 591b09c

Browse files
author
Chet Ramey
committed
Bash-4.3 patch 45
1 parent 489302a commit 591b09c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: patchlevel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
2626
looks for to find the patch level (for the sccs version string). */
2727

28-
#define PATCHLEVEL 44
28+
#define PATCHLEVEL 45
2929

3030
#endif /* _PATCHLEVEL_H_ */

Diff for: redir.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,10 @@ redir_open (filename, flags, mode, ri)
671671
fd = open (filename, flags, mode);
672672
e = errno;
673673
if (fd < 0 && e == EINTR)
674-
QUIT;
674+
{
675+
QUIT;
676+
run_pending_traps ();
677+
}
675678
errno = e;
676679
}
677680
while (fd < 0 && errno == EINTR);

0 commit comments

Comments
 (0)