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:
Simon Marchi 2023-02-20 11:52:40 -05:00
parent a38cd00799
commit 19005d1989

View File

@ -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);
}