diff options
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r-- | win/tclWinChan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index 545aa2d..0fc7455 100644 --- a/win/tclWinChan.c +++ b/win/tclWinChan.c @@ -1004,10 +1004,6 @@ FileGetOptionProc( */ if ((len > 1) && (strncmp(optionName, "-stat", len) == 0)) { - return TCL_OK; - } - - if (valid) { Tcl_Obj *dictObj = StatOpenFile(infoPtr); const char *dictContents; Tcl_Size dictLength; @@ -1030,6 +1026,10 @@ FileGetOptionProc( Tcl_DecrRefCount(dictObj); return TCL_OK; } + + if (valid) { + return TCL_OK; + } return Tcl_BadChannelOption(interp, optionName, "stat"); } |