diff options
| author | dgp <dgp@users.sourceforge.net> | 2014-01-24 21:52:59 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2014-01-24 21:52:59 (GMT) |
| commit | c25181bd7d9261a5c7f98d2b7785a8a020284585 (patch) | |
| tree | 6bac5a408e8e530934fa88f506f2003b61a03a6d | |
| parent | 834d5da992785d4c4046914c8f7c4acb815075cb (diff) | |
| parent | 2ceb7a607771e46bc6889bb04b70d989c78e59ee (diff) | |
| download | tcl-c25181bd7d9261a5c7f98d2b7785a8a020284585.zip tcl-c25181bd7d9261a5c7f98d2b7785a8a020284585.tar.gz tcl-c25181bd7d9261a5c7f98d2b7785a8a020284585.tar.bz2 | |
In WriteChars(), eliminate the copy step through a staging buffer when it
is not required for channel translation.
| -rw-r--r-- | generic/tclIO.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index f1d85bf..321f485 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -4198,16 +4198,17 @@ WriteChars( consumedSomething = 1; while (consumedSomething && (srcLen + savedLF + endEncoding > 0)) { consumedSomething = 0; - stage = statePtr->outputStage; - stageMax = statePtr->bufSize; - stageLen = stageMax; - - toWrite = stageLen; - if (toWrite > srcLen) { - toWrite = srcLen; - } if (translate) { + stage = statePtr->outputStage; + stageMax = statePtr->bufSize; + stageLen = stageMax; + + toWrite = stageLen; + if (toWrite > srcLen) { + toWrite = srcLen; + } + if (savedLF) { /* * A '\n' was left over from last call to TranslateOutputEOL() @@ -4234,8 +4235,9 @@ WriteChars( stageLen = stageMax; } } else { - memcpy(stage, src, toWrite); - stageLen = toWrite; + stage = (char *) src; + stageLen = srcLen; + toWrite = stageLen; } src += toWrite; srcLen -= toWrite; |
