diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-04-16 06:15:09 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-04-16 06:15:09 (GMT) |
| commit | 2cd4d6b3b669e45f4dd4de0f95447afa2c75e100 (patch) | |
| tree | bc271d77fbd11a554314f35a3faba2c42c7137ff | |
| parent | d5779eb0bd5570dd64404ab87ca8c664a1a8fa37 (diff) | |
| parent | 38efaa7df7eb28134468c49503ae5613eca41384 (diff) | |
| download | tcl-2cd4d6b3b669e45f4dd4de0f95447afa2c75e100.zip tcl-2cd4d6b3b669e45f4dd4de0f95447afa2c75e100.tar.gz tcl-2cd4d6b3b669e45f4dd4de0f95447afa2c75e100.tar.bz2 | |
* doc/FileSystem.3 (Tcl_FSOpenFileChannelProc): [Bug 3518244]: Fixed
documentation of this filesystem callback function; it must not
register its created channel - that's the responsibility of the caller
of Tcl_FSOpenFileChannel - as that leads to reference leaks.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | doc/FileSystem.3 | 7 |
2 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2012-04-16 Donal K. Fellows <dkf@users.sf.net> + + * doc/FileSystem.3 (Tcl_FSOpenFileChannelProc): [Bug 3518244]: Fixed + documentation of this filesystem callback function; it must not + register its created channel - that's the responsibility of the caller + of Tcl_FSOpenFileChannel - as that leads to reference leaks. + 2012-04-15 Donal K. Fellows <dkf@users.sf.net> * generic/tclEnsemble.c (NsEnsembleImplementationCmdNR): diff --git a/doc/FileSystem.3 b/doc/FileSystem.3 index cf785ae..52eeb23 100644 --- a/doc/FileSystem.3 +++ b/doc/FileSystem.3 @@ -582,7 +582,7 @@ In addition, if \fIinterp\fR is non-NULL, \fBTcl_FSOpenFileChannel\fR leaves an error message in \fIinterp\fR's result after any error. .PP The newly created channel is not registered in the supplied interpreter; to -register it, use \fBTcl_RegisterChannel\fR, described below. +register it, use \fBTcl_RegisterChannel\fR. If one of the standard channels, \fBstdin\fR, \fBstdout\fR or \fBstderr\fR was previously closed, the act of creating the new channel also assigns it as a replacement for the standard channel. @@ -1218,8 +1218,9 @@ In addition, if \fIinterp\fR is non-NULL, the \fBTcl_FSOpenFileChannelProc\fR leaves an error message in \fIinterp\fR's result after any error. .PP -The newly created channel is not registered in the supplied -interpreter; to register it, use \fBTcl_RegisterChannel\fR. If one of +The newly created channel must not registered in the supplied +interpreter; that task is up to the caller of +\fBTcl_FSOpenFileChannel\fR (if necessary). If one of the standard channels, \fBstdin\fR, \fBstdout\fR or \fBstderr\fR was previously closed, the act of creating the new channel also assigns it as a replacement for the standard channel. |
