Bash-4.3 patch 45
This commit is contained in:
parent
489302a91d
commit
591b09c48f
2 changed files with 5 additions and 2 deletions
|
@ -25,6 +25,6 @@
|
||||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||||
looks for to find the patch level (for the sccs version string). */
|
looks for to find the patch level (for the sccs version string). */
|
||||||
|
|
||||||
#define PATCHLEVEL 44
|
#define PATCHLEVEL 45
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|
5
redir.c
5
redir.c
|
@ -671,7 +671,10 @@ redir_open (filename, flags, mode, ri)
|
||||||
fd = open (filename, flags, mode);
|
fd = open (filename, flags, mode);
|
||||||
e = errno;
|
e = errno;
|
||||||
if (fd < 0 && e == EINTR)
|
if (fd < 0 && e == EINTR)
|
||||||
QUIT;
|
{
|
||||||
|
QUIT;
|
||||||
|
run_pending_traps ();
|
||||||
|
}
|
||||||
errno = e;
|
errno = e;
|
||||||
}
|
}
|
||||||
while (fd < 0 && errno == EINTR);
|
while (fd < 0 && errno == EINTR);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue