diff options
author | trav90 <travawine@protonmail.ch> | 2018-04-07 12:24:30 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-04-07 13:11:38 -0500 |
commit | bbd4001cb261cc54e2adf804ea7cbeb09078d7d9 (patch) | |
tree | 581523beea01c0b144051caebb6cb8a95539717a /js/src/jscompartmentinlines.h | |
parent | d960419686462067cb5745dcd1ad264abe0b1485 (diff) | |
download | uxp-bbd4001cb261cc54e2adf804ea7cbeb09078d7d9.tar.gz |
Fix Value::isGCThing footgun, stop returning true for NullValue
Diffstat (limited to 'js/src/jscompartmentinlines.h')
-rw-r--r-- | js/src/jscompartmentinlines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jscompartmentinlines.h b/js/src/jscompartmentinlines.h index 08d315db09..6a54bc5a64 100644 --- a/js/src/jscompartmentinlines.h +++ b/js/src/jscompartmentinlines.h @@ -61,7 +61,7 @@ inline bool JSCompartment::wrap(JSContext* cx, JS::MutableHandleValue vp) { /* Only GC things have to be wrapped or copied. */ - if (!vp.isMarkable()) + if (!vp.isGCThing()) return true; /* |