src/driver/screenshot.cpp avoid memory ranges overlap

This commit is contained in:
Jacek Jendrzej
2017-09-14 11:17:36 +02:00
parent 26e8712f90
commit d30bd0ea26

View File

@@ -393,7 +393,7 @@ bool CScreenShot::SaveJpg()
int xres2 = xres1+2;
for (int x = 0; x < xres; x++) {
int x2 = x*3;
memcpy(pixel_data + x2 + xres1, pixel_data + x*4 + y*xres*4, 3);
memmove(pixel_data + x2 + xres1, pixel_data + x*4 + y*xres*4, 3);
SWAP(pixel_data[x2 + xres1], pixel_data[x2 + xres2]);
}
}