components/ksh93/patches/Bug15808407.patch
author Rohith Ramesh Bangalore India <rohith.ramesh@oracle.com>
Fri, 22 Feb 2013 02:29:02 -0800
changeset 1167 d9893d2bc7c8
permissions -rw-r--r--
15808407 SUNBT7189531 ksh93 crash+core dump with minimalist script

--- a/src/cmd/ksh93/sh/init.c	2013-01-28 01:37:27.339300867 -0800
+++ b/src/cmd/ksh93/sh/init.c	2013-01-28 01:39:31.614342117 -0800
@@ -278,8 +278,11 @@
 static void put_history(register Namval_t* np,const char *val,int flags,Namfun_t *fp)
 {
 	Shell_t *shp = nv_shell(np);
-	void 	*histopen = shp->gd->hist_ptr;
+	void 	*histopen = NULL;
 	char	*cp;
+	if( shp ) { 
+	    histopen = shp->gd->hist_ptr; 
+	}
 	if(val && histopen)
 	{
 		if(np==HISTFILE && (cp=nv_getval(np)) && strcmp(val,cp)==0)