Tcl Source Code

Artifact [97d3791471]
Login

Artifact 97d37914713ff6d1f715f055a19605136b8f93f0:

Attachment "cmd_2x_bug.patch" to ticket [2107634fff] added by brlcad 2008-09-12 22:20:03.
Index: tclIO.c
===================================================================
--- tclIO.c	(revision 32637)
+++ tclIO.c	(working copy)
@@ -5431,6 +5431,8 @@
     char *src, *dst;
     Tcl_EncodingState oldState;
     int encEndFlagSuppressed = 0;
+    static int mflag = 0;
+    static int maxInt = 2147483647;
 
     factor = *factorPtr;
     offset = *offsetPtr;
@@ -5460,12 +5462,24 @@
 	 * larger.
 	 */
 
+	if (mflag) {
+	    mflag = 0;
+	    return -1;
+	}
+
 	length = offset * 2;
 	if (offset < dstNeeded) {
 	    length = offset + dstNeeded;
 	}
-	spaceLeft = length - offset;
-	length += TCL_UTF_MAX + 1;
+
+	if (length < 0) {
+	    length = maxInt;
+	    mflag = 1;
+	    spaceLeft = length - offset;
+	} else {
+	    spaceLeft = length - offset;
+	    length += TCL_UTF_MAX + 1;
+	}
 	Tcl_SetObjLength(objPtr, length);
     }
     if (toRead == srcLen) {