diff options
author | Bryan Cantrill <bryan@joyent.com> | 2013-06-07 06:50:04 +0000 |
---|---|---|
committer | Bryan Cantrill <bryan@joyent.com> | 2013-06-07 06:50:04 +0000 |
commit | 5aba84f5ad66ff533585ec95067c66bb6d92f9c7 (patch) | |
tree | 9f5da7143600653eb304ce46a66f31722a7f6dd7 | |
parent | 991584549f5ec4e58b99b5880d8dfdfea8a6304e (diff) | |
download | illumos-joyent-5aba84f5ad66ff533585ec95067c66bb6d92f9c7.tar.gz |
OS-2281 mdb_v8 unable to print objects on 3.14.5.x
-rw-r--r-- | usr/src/cmd/mdb/common/modules/v8/mdb_v8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/mdb/common/modules/v8/mdb_v8.c b/usr/src/cmd/mdb/common/modules/v8/mdb_v8.c index 28ca6db42f..746c7746e0 100644 --- a/usr/src/cmd/mdb/common/modules/v8/mdb_v8.c +++ b/usr/src/cmd/mdb/common/modules/v8/mdb_v8.c @@ -1590,7 +1590,7 @@ jsobj_properties(uintptr_t addr, if (mdb_vread(&ptr, ps, map + off) == -1) goto err; - if (V8_OFF_MAP_TRANSITIONS != -1) { + if (V8_OFF_MAP_INSTANCE_DESCRIPTORS == -1) { if (read_heap_array(ptr, &trans, &ntrans, UM_SLEEP) != 0) goto err; |