diff options
Diffstat (limited to 'bfd/section.c')
-rw-r--r-- | bfd/section.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |