mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
gdb: revert one erroneous bool-ification change
Commit 42c13555ff
("Change value::m_stack to bool") erroneously
changed a `0` to `false` in this call to read_value_memory. This
parameter is `LONGEST bit_offset`, it should stay `0`.
Change-Id: I128df6834cf8055ec6a7051e237e379978d3d651
This commit is contained in:
parent
a38cd00799
commit
19005d1989
@ -3749,7 +3749,7 @@ value::fetch_lazy_memory ()
|
||||
gdb_assert (len >= 0);
|
||||
|
||||
if (len > 0)
|
||||
read_value_memory (this, false, stack (), addr,
|
||||
read_value_memory (this, 0, stack (), addr,
|
||||
contents_all_raw ().data (), len);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user