components/tcsh/patches/004.tcsh-6.14.00-avoid_null_for_cwd.patch
author Melynda Hunter <melynda.hunter@oracle.com>
Wed, 06 Feb 2013 15:03:05 -0800
branchs11u1-sru
changeset 2485 9c1e9850ee41
parent 218 2659b05538d8
permissions -rw-r--r--
Added tag 0.175.1.5.0.1.0 for changeset c53d740a9580

diff -up tcsh-6.14.00/sh.proc.c.orig tcsh-6.14.00/sh.proc.c
--- tcsh-6.14.00/sh.proc.c.orig	2010-09-08 10:31:31.000000000 +0200
+++ tcsh-6.14.00/sh.proc.c	2010-09-08 10:48:07.996573506 +0200
@@ -396,7 +396,7 @@ found:
 #ifdef notdef
 		jobflags & PAEXITED ||
 #endif /* notdef */
-		!eq(dcwd->di_name, fp->p_cwd->di_name))) {
+		fp->p_cwd == NULL || !eq(dcwd->di_name, fp->p_cwd->di_name))) {
 	    /* PWP: print a newline after ^C */
 		if (jobflags & PINTERRUPTED) {
 #ifdef SHORT_STRINGS