2001-01-27 Fernando Nasser <fnasser@redhat.com>
From Momchil Velikov <velco@fadata.bg> * mi-cmd-disas.c (gdb_dis_asm_read_memory): Add missing memory attributes argument in the call to `xfer_memory'.
This commit is contained in:
parent
b71c67aba4
commit
80ee4fd53b
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-01-27 Fernando Nasser <fnasser@redhat.com>
|
||||
|
||||
From Momchil Velikov <velco@fadata.bg>
|
||||
* mi-cmd-disas.c (gdb_dis_asm_read_memory): Add missing memory
|
||||
attributes argument in the call to `xfer_memory'.
|
||||
|
||||
2000-12-14 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mi-cmd-disas.c, mi-cmd-var.c, mi-console.c, mi-main.c,
|
||||
|
|
|
@ -59,7 +59,7 @@ gdb_dis_asm_read_memory (bfd_vma memaddr, bfd_byte * myaddr,
|
|||
int res;
|
||||
|
||||
errno = 0;
|
||||
res = xfer_memory (memaddr, myaddr, len, 0, &exec_ops);
|
||||
res = xfer_memory (memaddr, myaddr, len, 0, 0, &exec_ops);
|
||||
|
||||
if (res == len)
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue