diff options
author | Doug Evans <dje@google.com> | 2008-09-12 20:40:57 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-09-12 20:40:57 +0000 |
commit | 00630ca836f7d3fcf90d78084cae1310c6fba854 (patch) | |
tree | 854d1455dccf181dad6ec47786fdeeb8ee663dbe /gdb | |
parent | 5d6fa95086bc3c3f346a85ea220bd744fc773594 (diff) | |
download | gdb-00630ca836f7d3fcf90d78084cae1310c6fba854.zip gdb-00630ca836f7d3fcf90d78084cae1310c6fba854.tar.gz gdb-00630ca836f7d3fcf90d78084cae1310c6fba854.tar.bz2 |
* corefile.c (write_memory): Remove unnecessary copying.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/corefile.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 86ba16e..3a6dcea 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2008-09-12 Doug Evans <dje@google.com> + * corefile.c (write_memory): Remove unnecessary copying. + * sol-thread.c (_initialize_sol_thread): Add FIXME regarding order of _initialize_* fns. diff --git a/gdb/corefile.c b/gdb/corefile.c index 726d9fc..2be4e26 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); } |