summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2006-08-09 18:12:24 (GMT)
committerdgp@users.sourceforge.net <dgp>2006-08-09 18:12:24 (GMT)
commit88138c5bb84fb9412f0fd84d89edb4f5084e1d2e (patch)
tree199266607c78110bf4ce522ac9bc96a552628799 /generic/tclEncoding.c
parentc3d1c1eed3ee3415972711d9ceff286cb491e855 (diff)
downloadtcl-88138c5bb84fb9412f0fd84d89edb4f5084e1d2e.zip
tcl-88138c5bb84fb9412f0fd84d89edb4f5084e1d2e.tar.gz
tcl-88138c5bb84fb9412f0fd84d89edb4f5084e1d2e.tar.bz2
* generic/tclEncoding.c: Replace buffer copy in for loop
with call to memcpy(). Thanks to afredd. [Patch 1530262]
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index 7abb402..f5e216a 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclEncoding.c,v 1.42 2006/04/05 00:18:50 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclEncoding.c,v 1.43 2006/08/09 18:12:25 dgp Exp $
*/
#include "tclInt.h"
@@ -2028,9 +2028,7 @@ BinaryProc(
*srcReadPtr = srcLen;
*dstWrotePtr = srcLen;
*dstCharsPtr = srcLen;
- for ( ; --srcLen >= 0; ) {
- *dst++ = *src++;
- }
+ memcpy((void *) dst, (void *) src, (size_t) srcLen);
return result;
}