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