[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-802
From: |
John Malmberg |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-802-g39138de |
Date: |
Tue, 26 Jan 2016 14:12:37 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.1-stable has been updated
via 39138de63889a40662461aeca6ac146ccaef90ab (commit)
from 87da302710201b28fe757cde0bf6ef8078aaaed5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=39138de63889a40662461aeca6ac146ccaef90ab
commit 39138de63889a40662461aeca6ac146ccaef90ab
Author: John Malmberg <address@hidden>
Date: Tue Jan 26 07:59:56 2016 -0600
VMS needs to close 2 files when out of file numbers
diff --git a/ChangeLog b/ChangeLog
index 07ffd0a..77a8ffb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-01-25 John E. Malmberg <address@hidden>
+
+ * io.c (redirect): Need to call close_one more than once after
+ running out of file handles.
+
2016-01-25 Arnold D. Robbins <address@hidden>
* NEWS: Document VMS support updated.
diff --git a/io.c b/io.c
index 8b95b3f..d700d87 100644
--- a/io.c
+++ b/io.c
@@ -1001,8 +1001,10 @@ redirect(NODE *redir_exp, int redirtype, int *errflg)
(vaxc$errno == SS$_EXQUOTA ||
vaxc$errno == SS$_EXBYTLM ||
vaxc$errno == RMS$_ACC ||
- vaxc$errno == RMS$_SYN))
+ vaxc$errno == RMS$_SYN)) {
close_one();
+ close_one();
+ }
#endif
else {
/*
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
io.c | 4 +++-
2 files changed, 8 insertions(+), 1 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-802-g39138de,
John Malmberg <=