summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormdejong <mdejong>2006-12-27 03:04:55 (GMT)
committermdejong <mdejong>2006-12-27 03:04:55 (GMT)
commit6448a2e91d588f0663ff617d97c44412b8774718 (patch)
tree3e613f16f2e68283f9afc634a8b2de117622d100
parentdd7cd48fab975a8f107a92c4af405aed06740beb (diff)
downloadtcl-6448a2e91d588f0663ff617d97c44412b8774718.zip
tcl-6448a2e91d588f0663ff617d97c44412b8774718.tar.gz
tcl-6448a2e91d588f0663ff617d97c44412b8774718.tar.bz2
* generic/tclIO.c (Tcl_GetsObj):
Avoid checking for for the LF in a possible CRLF sequence when EOF has already been found.
-rw-r--r--ChangeLog6
-rw-r--r--generic/tclIO.c34
2 files changed, 26 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index ba6b105..ec088bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2006-12-26 Mo DeJong <mdejong@users.sourceforge.net>
+ * generic/tclIO.c (Tcl_GetsObj):
+ Avoid checking for for the LF in a possible CRLF
+ sequence when EOF has already been found.
+
+2006-12-26 Mo DeJong <mdejong@users.sourceforge.net>
+
* generic/tclEncoding.c (EscapeFromUtfProc):
Clear the TCL_ENCODING_END flag when end
bytes are written. This fix keep this method
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 088dca8..a38fc3b 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIO.c,v 1.112 2006/11/13 17:51:34 dgp Exp $
+ * RCS: @(#) $Id: tclIO.c,v 1.113 2006/12/27 03:04:55 mdejong Exp $
*/
#include "tclInt.h"
@@ -3899,19 +3899,22 @@ Tcl_GetsObj(
/*
* If a CR is at the end of the buffer, then check for a
- * LF at the begining of the next buffer.
+ * LF at the begining of the next buffer, unless EOF char
+ * was found already.
*/
if (eol >= dstEnd) {
int offset;
- offset = eol - objPtr->bytes;
- dst = dstEnd;
- if (FilterInputBytes(chanPtr, &gs) != 0) {
- goto restore;
+ if (eol != eof) {
+ offset = eol - objPtr->bytes;
+ dst = dstEnd;
+ if (FilterInputBytes(chanPtr, &gs) != 0) {
+ goto restore;
+ }
+ dstEnd = dst + gs.bytesWrote;
+ eol = objPtr->bytes + offset;
}
- dstEnd = dst + gs.bytesWrote;
- eol = objPtr->bytes + offset;
if (eol >= dstEnd) {
skip = 0;
goto gotEOL;
@@ -3957,15 +3960,18 @@ Tcl_GetsObj(
if (eol == dstEnd) {
/*
* If buffer ended on \r, peek ahead to see if a \n is
- * available.
+ * available, unless EOF char was found already.
*/
- int offset;
+ if (eol != eof) {
+ int offset;
+
+ offset = eol - objPtr->bytes;
+ dst = dstEnd;
+ PeekAhead(chanPtr, &dstEnd, &gs);
+ eol = objPtr->bytes + offset;
+ }
- offset = eol - objPtr->bytes;
- dst = dstEnd;
- PeekAhead(chanPtr, &dstEnd, &gs);
- eol = objPtr->bytes + offset;
if (eol >= dstEnd) {
eol--;
statePtr->flags |= INPUT_SAW_CR;