summaryrefslogtreecommitdiffstats
path: root/generic/tkImgPhoto.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-01-25 22:00:59 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-01-25 22:00:59 (GMT)
commitd0aa23eb9005cbc9b4e706ab70b5082be80bad35 (patch)
tree6fd938162b644bab271af5249900538d9245cefc /generic/tkImgPhoto.c
parentbcc8f53d1fdf9c82b0d1b4dc17a5dfeb3038edf9 (diff)
downloadtk-d0aa23eb9005cbc9b4e706ab70b5082be80bad35.zip
tk-d0aa23eb9005cbc9b4e706ab70b5082be80bad35.tar.gz
tk-d0aa23eb9005cbc9b4e706ab70b5082be80bad35.tar.bz2
Bug-2433260: non-critical error in Tk_PhotoPutBlock
Diffstat (limited to 'generic/tkImgPhoto.c')
-rw-r--r--generic/tkImgPhoto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c
index 3f439de..80b44d7 100644
--- a/generic/tkImgPhoto.c
+++ b/generic/tkImgPhoto.c
@@ -4406,7 +4406,7 @@ Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height, compRule)
/*
* Copy the data into our local 32-bit/pixel array.
- * If we can do it with a single memcpy, we do.
+ * If we can do it with a single memmove, we do.
*/
destLinePtr = masterPtr->pix32 + (y * masterPtr->width + x) * 4;
@@ -4414,7 +4414,7 @@ Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height, compRule)
/*
* This test is probably too restrictive. We should also be able to
- * do a memcpy if pixelSize == 3 and alphaOffset == 0. Maybe other cases
+ * do a memmove if pixelSize == 3 and alphaOffset == 0. Maybe other cases
* too.
*/
if ((blockPtr->pixelSize == 4)
@@ -4423,7 +4423,7 @@ Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height, compRule)
&& ((height == 1) || ((x == 0) && (width == masterPtr->width)
&& (blockPtr->pitch == pitch)))
&& (compRule == TK_PHOTO_COMPOSITE_SET)) {
- memcpy((VOID *) destLinePtr,
+ memmove((VOID *) destLinePtr,
(VOID *) (blockPtr->pixelPtr + blockPtr->offset[0]),
(size_t) (height * width * 4));
} else {