diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2007-04-24 02:42:18 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-24 02:42:18 (GMT) |
| commit | bd2a574e61708b319035524fdc69d3caf103d25d (patch) | |
| tree | 3dabb44a145009e9a5d1c9fb4f2cd52dcff62ce5 /generic/tclIOCmd.c | |
| parent | 7f2cca33a6ed4a1311816123585b6df106afcd67 (diff) | |
| download | tcl-bd2a574e61708b319035524fdc69d3caf103d25d.zip tcl-bd2a574e61708b319035524fdc69d3caf103d25d.tar.gz tcl-bd2a574e61708b319035524fdc69d3caf103d25d.tar.bz2 | |
* generic/tclIOCmd.c (Tcl_ReadObjCmd): Plugged a leak of the
buffer object if the physocal read returned an error and the
bypass area had no message.
* generic/tclIORChan.c (TclChanCreateObjCmd): Plugged a leak of
the return value from the "initialize" method of a channel
handler.
Diffstat (limited to 'generic/tclIOCmd.c')
| -rw-r--r-- | generic/tclIOCmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOCmd.c b/generic/tclIOCmd.c index 542aeb6..97d11ff 100644 --- a/generic/tclIOCmd.c +++ b/generic/tclIOCmd.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOCmd.c,v 1.39 2007/04/02 18:48:03 dgp Exp $ + * RCS: @(#) $Id: tclIOCmd.c,v 1.40 2007/04/24 02:42:18 kennykb Exp $ */ #include "tclInt.h" @@ -411,8 +411,8 @@ Tcl_ReadObjCmd( Tcl_ResetResult(interp); Tcl_AppendResult(interp, "error reading \"", name, "\": ", Tcl_PosixError(interp), NULL); - Tcl_DecrRefCount(resultPtr); } + Tcl_DecrRefCount(resultPtr); return TCL_ERROR; } |
