OSDN Git Service

avcodec/takdec: Use memove, avoid undefined memcpy() use
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 7 Nov 2015 19:05:27 +0000 (20:05 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sat, 7 Nov 2015 20:30:07 +0000 (21:30 +0100)
Fixes: e214333cbd94c91228e624ff39329ce6/asan_generic_4a5159_6412_96cda2530e80607210ab41ccae3d456d.tak

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/takdec.c

index e5c0723..dc0449e 100644 (file)
@@ -645,7 +645,7 @@ static int decorrelate(TAKDecContext *s, int c1, int c2, int length)
                 *p1++ = v;
             }
 
-            memcpy(s->residues, &s->residues[tmp], 2 * filter_order);
+            memmove(s->residues, &s->residues[tmp], 2 * filter_order);
         }
 
         emms_c();