Replace memcpy with memmove
[deliverable/binutils-gdb.git] / bfd / section.c
index ab5635b4b5f307a61f697264fdae52445ba6ec71..6fd7d8ec02053ac300b634328859c4a322118662 100644 (file)
@@ -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;
     }
 
This page took 0.023552 seconds and 4 git commands to generate.