summaryrefslogtreecommitdiffstats
path: root/generic/tclFCmd.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2001-10-15 10:30:07 (GMT)
committervincentdarley <vincentdarley>2001-10-15 10:30:07 (GMT)
commit6b155e40fb3b8c1a49004eb523b8aa9aaf21e28e (patch)
treeeca7bc624b57d18732c380cc0c9dda84a747d7c6 /generic/tclFCmd.c
parent39c45659eabd57fd234fb15f1f151e5a4f965c26 (diff)
downloadtcl-6b155e40fb3b8c1a49004eb523b8aa9aaf21e28e.zip
tcl-6b155e40fb3b8c1a49004eb523b8aa9aaf21e28e.tar.gz
tcl-6b155e40fb3b8c1a49004eb523b8aa9aaf21e28e.tar.bz2
small fs fixes
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r--generic/tclFCmd.c8
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;
}