diff options
author | das <das> | 2007-11-13 14:52:49 (GMT) |
---|---|---|
committer | das <das> | 2007-11-13 14:52:49 (GMT) |
commit | 7cfeefd4a1423e79d7303a8603ab8f6a32546fc9 (patch) | |
tree | 63591e01f0303a6c9a9b9fea1b3ac516ada68142 /unix | |
parent | 4293fe3d97a3bba7761aa04873823fba5d1c8280 (diff) | |
download | tcl-7cfeefd4a1423e79d7303a8603ab8f6a32546fc9.zip tcl-7cfeefd4a1423e79d7303a8603ab8f6a32546fc9.tar.gz tcl-7cfeefd4a1423e79d7303a8603ab8f6a32546fc9.tar.bz2 |
fix Tcl_DStringFree buglet
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixChan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index dc104f0..6949f8b 100644 --- a/unix/tclUnixChan.c +++ b/unix/tclUnixChan.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixChan.c,v 1.84 2007/11/13 14:06:05 dkf Exp $ + * RCS: @(#) $Id: tclUnixChan.c,v 1.85 2007/11/13 14:52:49 das Exp $ */ #include "tclInt.h" /* Internal definitions for Tcl. */ @@ -2741,7 +2741,6 @@ CreateSocketAddress( if (native != NULL) { Tcl_DStringFree(&ds); } - Tcl_DStringFree(&ds); } /* |