diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-04-09 13:02:10 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-04-09 13:02:10 +0000 |
commit | 85c9a9d507fb41d3a1160eae93849c6d3a46beb9 (patch) | |
tree | 9bb734584066a30eb1f802cd48123e5d4b34079d /gdb/valops.c | |
parent | a2d91340f322fed39bdaf02391b8be01dffb7869 (diff) | |
download | gdb-85c9a9d507fb41d3a1160eae93849c6d3a46beb9.zip gdb-85c9a9d507fb41d3a1160eae93849c6d3a46beb9.tar.gz gdb-85c9a9d507fb41d3a1160eae93849c6d3a46beb9.tar.bz2 |
Compare VALUE_ADDRESS() return value with ZERO not NULL.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index bfbffa9..a99ad1c 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -3358,7 +3358,7 @@ value_rtti_type (v, full, top, using_enc) we'd waste a bunch of time figuring out we already know the type. Besides, we don't care about the type, just the actual pointer */ - if (VALUE_ADDRESS(value_field(v,TYPE_VPTR_FIELDNO(known_type))) == NULL) + if (VALUE_ADDRESS (value_field (v, TYPE_VPTR_FIELDNO (known_type))) == 0) return NULL; /* |