From: H.J. Lu Date: Wed, 7 Nov 2012 05:57:24 +0000 (+0000) Subject: Replace memcpy with memmove X-Git-Tag: cgen-snapshot-20121201~226 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ddda4adc286e6a6e37702141f891a04552f18006;p=external%2Fbinutils.git Replace memcpy with memmove * section.c (bfd_get_section_contents): Replace memcpy with memmove. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a2fb296..90f5e78 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-11-07 H.J. Lu + + * section.c (bfd_get_section_contents): Replace memcpy + with memmove. + 2012-11-07 Hans-Peter Nilsson PR binutils/14481 diff --git a/bfd/section.c b/bfd/section.c index ab5635b..6fd7d8e 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -1546,7 +1546,7 @@ bfd_get_section_contents (bfd *abfd, return FALSE; } - memcpy (location, section->contents + offset, (size_t) count); + memmove (location, section->contents + offset, (size_t) count); return TRUE; }