summaryrefslogtreecommitdiffstats
path: root/gdb/value.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2011-02-14 12:54:42 +0000
committerPedro Alves <palves@redhat.com>2011-02-14 12:54:42 +0000
commit6bfc80c7385fe08f025e6e774655bc90441e2254 (patch)
tree6f04485fb614c68d0b06605138f56b322680d586 /gdb/value.c
parente730304246e026793738f1a2d135db2de36bf567 (diff)
downloadppe42-binutils-6bfc80c7385fe08f025e6e774655bc90441e2254.tar.gz
ppe42-binutils-6bfc80c7385fe08f025e6e774655bc90441e2254.zip
* value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
range.
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 2b8dd360ab..116eee269d 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -439,7 +439,7 @@ mark_value_bytes_unavailable (struct value *value, int offset, int length)
i = VEC_lower_bound (range_s, value->unavailable, &newr, range_lessthan);
if (i > 0)
{
- struct range *bef = VEC_index (range_s, value->unavailable, i - i);
+ struct range *bef = VEC_index (range_s, value->unavailable, i - 1);
if (ranges_overlap (bef->offset, bef->length, offset, length))
{
OpenPOWER on IntegriCloud