Blame SOURCES/ksh-20120801-alarmifs.patch

61d8f4
--- ksh-20120801/src/cmd/ksh93/sh/init.c	2014-12-10 20:11:17.693446084 -0200
61d8f4
+++ ksh-20120801/src/cmd/ksh93/sh/init.c	2014-12-10 20:11:24.753442619 -0200
61d8f4
@@ -576,6 +576,7 @@ static char* get_ifs(register Namval_t*
61d8f4
 			shp->ifstable[' '] = shp->ifstable['\t'] = S_SPACE;
61d8f4
 			shp->ifstable['\n'] = S_NL;
61d8f4
 		}
61d8f4
+		shp->ifstable[0] = S_EOF;
61d8f4
 	}
61d8f4
 	return(value);
61d8f4
 }
61d8f4
--- ksh-20120801/src/cmd/ksh93/bltins/alarm.c	2014-12-18 12:03:39.198461933 -0200
61d8f4
+++ ksh-20120801/src/cmd/ksh93/bltins/alarm.c	2014-12-18 12:04:32.464421268 -0200
61d8f4
@@ -130,6 +130,7 @@ void	sh_timetraps(Shell_t *shp)
61d8f4
 {
61d8f4
 	register struct tevent *tp, *tpnext;
61d8f4
 	register struct tevent *tptop;
61d8f4
+	char	ifstable[256];
61d8f4
 	while(1)
61d8f4
 	{
61d8f4
 		shp->sigflag[SIGALRM] &= ~SH_SIGALRM;
61d8f4
@@ -141,7 +142,11 @@ void	sh_timetraps(Shell_t *shp)
61d8f4
 			{
61d8f4
 				tp->flags &= ~L_FLAG;
61d8f4
 				if(tp->action)
61d8f4
+				{
61d8f4
+				    	memcpy(ifstable,shp->ifstable,sizeof(ifstable));
61d8f4
 					sh_fun(tp->action,tp->node,(char**)0);
61d8f4
+					memcpy(shp->ifstable,ifstable,sizeof(ifstable));
61d8f4
+				}
61d8f4
 				tp->flags &= ~L_FLAG;
61d8f4
 				if(!tp->flags)
61d8f4
 				{
61d8f4