summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorrjohnson <rjohnson>1999-01-04 19:25:00 (GMT)
committerrjohnson <rjohnson>1999-01-04 19:25:00 (GMT)
commit760c4938e485677a0254aec064f2b5514b2de2f4 (patch)
tree2ebcffb0739583b8c350d6195ba1907eed304abb /win
parentd776c5c3824a646b3a8a58c6f5125c0dcf75f554 (diff)
downloadtcl-760c4938e485677a0254aec064f2b5514b2de2f4.zip
tcl-760c4938e485677a0254aec064f2b5514b2de2f4.tar.gz
tcl-760c4938e485677a0254aec064f2b5514b2de2f4.tar.bz2
Updated the version to 8.0.5.
Diffstat (limited to 'win')
-rw-r--r--win/README6
-rw-r--r--win/README.binary10
-rw-r--r--win/tclWinChan.c5
3 files changed, 12 insertions, 9 deletions
diff --git a/win/README b/win/README
index 3e2b574..559672f 100644
--- a/win/README
+++ b/win/README
@@ -1,10 +1,10 @@
-Tcl 8.0.4 for Windows
+Tcl 8.0.5 for Windows
by Scott Stanton
Scriptics Corporation
scott.stanton@scriptics.com
-RCS: @(#) $Id: README,v 1.7 1998/10/17 00:20:50 escoffon Exp $
+RCS: @(#) $Id: README,v 1.8 1999/01/04 19:25:05 rjohnson Exp $
1. Introduction
---------------
@@ -41,7 +41,7 @@ In order to compile Tcl for Windows, you need the following items:
Visual C++ 2.x/4.x/5.x
Visual C++ 1.5 (to build tcl1680.dll for Win32s support of exec)
-In practice, the 8.0.4 release is built with Visual C++ 5.0
+In practice, the 8.0.5 release is built with Visual C++ 5.0
In the "win" subdirectory of the source release, you will find two
files called "makefile.bc" and "makefile.vc". These are the makefiles
diff --git a/win/README.binary b/win/README.binary
index 759fb0c..fc8d4a1 100644
--- a/win/README.binary
+++ b/win/README.binary
@@ -1,11 +1,11 @@
-Tcl/Tk 8.0.4 for Windows, Binary Distribution
+Tcl/Tk 8.0.5 for Windows, Binary Distribution
-%Z% $Id: README.binary,v 1.2 1998/10/17 00:20:50 escoffon Exp $
+%Z% $Id: README.binary,v 1.3 1999/01/04 19:25:05 rjohnson Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.0.4 for
+This directory contains the binary distribution of Tcl/Tk 8.0.5 for
Windows. It was compiled with Microsoft Visual C++ 5.0 using Win32
API, so that it will run under Windows NT and Windows 95. The
information here corresponds to release 8.0. This patch provides
@@ -22,11 +22,11 @@ release fixes various bugs in Tcl 8.0, plus it adds a few minor
features to support the TclPro 1.0 tool set and [incr Tcl] 3.0.
Please check the changes file in the source release for details.
-This release also corresponds to Tk 8.0.4. This is a major release with
+This release also corresponds to Tk 8.0.5. This is a major release with
significant new features such as native look and feel on Macintoshes
and PCs, a new font mechanism, application embedding, and proper
support for Safe-Tcl. See below for details. There should be no
-backward incompatibilities in Tk 8.0.4 that affect scripts.
+backward incompatibilities in Tk 8.0.5 that affect scripts.
Note: with this release the Tk version number skips from 4.2 to 8.0.
The jump was made in order to synchronize the Tcl and Tk version
diff --git a/win/tclWinChan.c b/win/tclWinChan.c
index 1ff36ce..3d2c4e6 100644
--- a/win/tclWinChan.c
+++ b/win/tclWinChan.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinChan.c,v 1.3 1998/09/14 18:40:19 stanton Exp $
+ * RCS: @(#) $Id: tclWinChan.c,v 1.4 1999/01/04 19:25:05 rjohnson Exp $
*/
#include "tclWinInt.h"
@@ -1167,6 +1167,9 @@ TclGetDefaultStdChannel(type)
}
channel = Tcl_MakeFileChannel(handle, mode);
+ if (channel == NULL) {
+ return NULL;
+ }
/*
* Set up the normal channel options for stdio handles.