mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
* corelow.c (core_xfer_partial): Pass writebuf to
deprecated_xfer_memory in TARGET_OBJECT_MEMORY write case.
This commit is contained in:
@ -521,11 +521,11 @@ core_xfer_partial (struct target_ops *ops, enum target_object object,
|
||||
{
|
||||
case TARGET_OBJECT_MEMORY:
|
||||
if (readbuf)
|
||||
return (*ops->deprecated_xfer_memory) (offset, readbuf, len,
|
||||
0/*write*/, NULL, ops);
|
||||
return (*ops->deprecated_xfer_memory) (offset, readbuf,
|
||||
len, 0/*write*/, NULL, ops);
|
||||
if (writebuf)
|
||||
return (*ops->deprecated_xfer_memory) (offset, readbuf, len,
|
||||
1/*write*/, NULL, ops);
|
||||
return (*ops->deprecated_xfer_memory) (offset, (gdb_byte *) writebuf,
|
||||
len, 1/*write*/, NULL, ops);
|
||||
return -1;
|
||||
|
||||
case TARGET_OBJECT_AUXV:
|
||||
|
Reference in New Issue
Block a user