about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Src/exec.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 821563406..736bbd76d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-05  Bart Schaefer  <schaefer@zsh.org>
+
+	* 31372: Src/exec.c: Do not block SIGWINCH for child processes
+
 2013-05-05  Kenyon Ralph  <kenyon@kenyonralph.com>
 
 	* 31371: Completion/Linux/Command/_brctl: _brctl: update brctl
diff --git a/Src/exec.c b/Src/exec.c
index fa148756b..c71f3f331 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -303,11 +303,13 @@ zfork(struct timeval *tv)
 	zerr("fork failed: %e", errno);
 	return -1;
     }
+    if (!pid) {
+	winch_unblock();
 #ifdef HAVE_GETRLIMIT
-    if (!pid)
 	/* set resource limits for the child process */
 	setlimits(NULL);
 #endif
+    }
     return pid;
 }