diff options
| author | vincentdarley <vincentdarley> | 2001-10-15 10:30:07 (GMT) |
|---|---|---|
| committer | vincentdarley <vincentdarley> | 2001-10-15 10:30:07 (GMT) |
| commit | c11dfd6cff9b2f6fd8749bb5201fb830fe466ae2 (patch) | |
| tree | eca7bc624b57d18732c380cc0c9dda84a747d7c6 /generic/tclFCmd.c | |
| parent | a43fe6692f04126d41f743281dcf277d1fd7deef (diff) | |
| download | tcl-c11dfd6cff9b2f6fd8749bb5201fb830fe466ae2.zip tcl-c11dfd6cff9b2f6fd8749bb5201fb830fe466ae2.tar.gz tcl-c11dfd6cff9b2f6fd8749bb5201fb830fe466ae2.tar.bz2 | |
small fs fixes
Diffstat (limited to 'generic/tclFCmd.c')
| -rw-r--r-- | generic/tclFCmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c index 042fe79..57507ab 100644 --- a/generic/tclFCmd.c +++ b/generic/tclFCmd.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: tclFCmd.c,v 1.13 2001/09/08 14:05:09 vincentdarley Exp $ + * RCS: @(#) $Id: tclFCmd.c,v 1.14 2001/10/15 10:30:07 vincentdarley Exp $ */ #include "tclInt.h" @@ -406,11 +406,11 @@ TclFileDeleteCmd(interp, objc, objv) Tcl_GetString(errfile), "\": ", Tcl_PosixError(interp), (char *) NULL); } - if (errorBuffer != NULL) { - Tcl_DecrRefCount(errorBuffer); - } } done: + if (errorBuffer != NULL) { + Tcl_DecrRefCount(errorBuffer); + } return result; } |
