From 00630ca836f7d3fcf90d78084cae1310c6fba854 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 12 Sep 2008 20:40:57 +0000 Subject: * corefile.c (write_memory): Remove unnecessary copying. --- gdb/corefile.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gdb/corefile.c') diff --git a/gdb/corefile.c b/gdb/corefile.c index 726d9fcc5fa..2be4e260f5b 100644 --- a/gdb/corefile.c +++ b/gdb/corefile.c @@ -350,10 +350,7 @@ void write_memory (CORE_ADDR memaddr, const bfd_byte *myaddr, int len) { int status; - gdb_byte *bytes = alloca (len); - - memcpy (bytes, myaddr, len); - status = target_write_memory (memaddr, bytes, len); + status = target_write_memory (memaddr, myaddr, len); if (status != 0) memory_error (status, memaddr); } -- cgit v1.2.1