summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2011-03-08 22:09:48 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2011-03-08 22:09:48 +0000
commit256e70644cb2941766646f3d15b4a4bce9787620 (patch)
treeeb4c26ef0eb19bc6f3f0ad4c3899d84f0e01a5f3 /media-libs/libsdl/files
parentAdded fixes for kdeenablefinal problems, bug 350303. Not completely solved yet. (diff)
downloadhistorical-256e70644cb2941766646f3d15b4a4bce9787620.tar.gz
historical-256e70644cb2941766646f3d15b4a4bce9787620.tar.bz2
historical-256e70644cb2941766646f3d15b4a4bce9787620.zip
add upstream patch to fix a memcpy that should have been a memmove (bugs #357687 and #354175)
Package-Manager: portage-2.1.9.25/cvs/Linux i686
Diffstat (limited to 'media-libs/libsdl/files')
-rw-r--r--media-libs/libsdl/files/libsdl-1.2.14-glibc213.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/media-libs/libsdl/files/libsdl-1.2.14-glibc213.patch b/media-libs/libsdl/files/libsdl-1.2.14-glibc213.patch
new file mode 100644
index 000000000000..ab695f9b4616
--- /dev/null
+++ b/media-libs/libsdl/files/libsdl-1.2.14-glibc213.patch
@@ -0,0 +1,12 @@
+diff -r 6bb01861c4c0 src/video/SDL_blit.c
+--- a/src/video/SDL_blit.c Wed Feb 16 04:49:07 2011 -0800
++++ b/src/video/SDL_blit.c Wed Feb 16 22:51:23 2011 +0100
+@@ -214,7 +214,7 @@
+ dstskip = w+info->d_skip;
+ if ( dst < src ) {
+ while ( h-- ) {
+- SDL_memcpy(dst, src, w);
++ SDL_memmove(dst, src, w);
+ src += srcskip;
+ dst += dstskip;
+ }