aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/process.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 04c89b63fa4..3b8dfe011ee 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12013-08-12 Paul Eggert <eggert@cs.ucla.edu>
2
3 * process.c (deactivate_process): Reset fds to -1 (Bug#15035).
4 This fixes a problem introduced by the Bug#15035 patch
5 when using GPG. Reported by Herbert J. Skuhra.
6
12013-08-12 Eli Zaretskii <eliz@gnu.org> 72013-08-12 Eli Zaretskii <eliz@gnu.org>
2 8
3 * decompress.c <zlib_initialized> [WINDOWSNT]: New static variable. 9 * decompress.c <zlib_initialized> [WINDOWSNT]: New static variable.
diff --git a/src/process.c b/src/process.c
index a2bcffe5160..c803d69d6d8 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3842,6 +3842,8 @@ deactivate_process (Lisp_Object proc)
3842 3842
3843 if (inchannel >= 0) 3843 if (inchannel >= 0)
3844 { 3844 {
3845 p->infd = -1;
3846 p->outfd = -1;
3845#ifdef DATAGRAM_SOCKETS 3847#ifdef DATAGRAM_SOCKETS
3846 if (DATAGRAM_CHAN_P (inchannel)) 3848 if (DATAGRAM_CHAN_P (inchannel))
3847 { 3849 {