diff options
| author | dgp@users.sourceforge.net <dgp> | 2009-10-27 20:30:46 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2009-10-27 20:30:46 (GMT) |
| commit | 25b34cc674ba647d309195a6766acd5300c279be (patch) | |
| tree | 6df8259c8202f40f656fc91f00a9a952b7c400ea /generic/tclPathObj.c | |
| parent | 4554ad68b5a4328a1be27ee88055bbf1ef8d77ce (diff) | |
| download | tcl-25b34cc674ba647d309195a6766acd5300c279be.zip tcl-25b34cc674ba647d309195a6766acd5300c279be.tar.gz tcl-25b34cc674ba647d309195a6766acd5300c279be.tar.bz2 | |
* generic/tclPathObj.c: Missing refcount on cached normalized path
caused crashes. [Bug 2884203].
Diffstat (limited to 'generic/tclPathObj.c')
| -rw-r--r-- | generic/tclPathObj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index 60220b9..bd69f09 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.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: tclPathObj.c,v 1.66.2.9 2009/08/20 14:59:53 dgp Exp $ + * RCS: @(#) $Id: tclPathObj.c,v 1.66.2.10 2009/10/27 20:30:48 dgp Exp $ */ #include "tclInt.h" @@ -2005,6 +2005,7 @@ Tcl_FSGetNormalizedPath( TclFSNormalizeToUniquePath(interp, copy, cwdLen-1, (fsPathPtr->nativePathPtr == NULL ? &clientData : NULL)); fsPathPtr->normPathPtr = copy; + Tcl_IncrRefCount(fsPathPtr->normPathPtr); if (clientData != NULL) { fsPathPtr->nativePathPtr = clientData; } |
