diff options
author | das <das> | 2007-11-13 14:52:49 (GMT) |
---|---|---|
committer | das <das> | 2007-11-13 14:52:49 (GMT) |
commit | fd703c939a42e5dde3120554e508dd354c7323c3 (patch) | |
tree | 63591e01f0303a6c9a9b9fea1b3ac516ada68142 /unix/tclUnixChan.c | |
parent | ecd5018a5a7703b2b0b2a354b9a2f5be0189b92d (diff) | |
download | tcl-fd703c939a42e5dde3120554e508dd354c7323c3.zip tcl-fd703c939a42e5dde3120554e508dd354c7323c3.tar.gz tcl-fd703c939a42e5dde3120554e508dd354c7323c3.tar.bz2 |
fix Tcl_DStringFree buglet
Diffstat (limited to 'unix/tclUnixChan.c')
-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); } /* |