Update of /cvsroot/winbash/winbash
In directory usw-pr-cvs1:/tmp/cvs-serv5488
Modified Files:
subst.c
Log Message:
Removed duplicate free call. it was caused involuntarily by the patch process
Index: subst.c
===================================================================
RCS file: /cvsroot/winbash/winbash/subst.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- subst.c 11 Mar 2002 14:32:12 -0000 1.8
+++ subst.c 14 Mar 2002 22:05:58 -0000 1.9
@@ -2218,9 +2218,6 @@
error_exit:
FREE (istring);
-#if defined (__NT_VC__)
- FREE (save_wd);
-#endif
close (fildes[0]);
close (fildes[1]);
return ((char *)NULL);
|