mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-25 16:57:52 +00:00
Use gdb::byte_vector in target_write_memory
Pedro pointed out that target_write_memory should use gdb::byte_vector rather than std::vector<unsigned char>. gdb/gdbserver/ChangeLog 2019-08-15 Tom Tromey <tromey@adacore.com> * target.c (target_write_memory): Use gdb::byte_vector.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2019-08-15 Tom Tromey <tromey@adacore.com>
|
||||
|
||||
* target.c (target_write_memory): Use gdb::byte_vector.
|
||||
|
||||
2019-08-15 Tom Tromey <tromey@adacore.com>
|
||||
|
||||
* tracepoint.c (write_inferior_data_pointer)
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
|
||||
#include "server.h"
|
||||
#include "tracepoint.h"
|
||||
#include "gdbsupport/byte-vector.h"
|
||||
|
||||
struct target_ops *the_target;
|
||||
|
||||
@@ -154,7 +155,7 @@ target_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
|
||||
{
|
||||
/* Make a copy of the data because check_mem_write may need to
|
||||
update it. */
|
||||
std::vector<unsigned char> buffer (myaddr, myaddr + len);
|
||||
gdb::byte_vector buffer (myaddr, myaddr + len);
|
||||
check_mem_write (memaddr, buffer.data (), myaddr, len);
|
||||
return (*the_target->write_memory) (memaddr, buffer.data (), len);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user