No Bug - Fix a warning introduced by bug 984361; r=jonco

This commit is contained in:
Terrence Cole 2014-05-14 09:15:46 -07:00
parent 4d4f220438
commit 20bc4d4879

View File

@ -153,7 +153,9 @@ CheckMarkedThing(JSTracer *trc, T **thingp)
JS_ASSERT(trc);
JS_ASSERT(thingp);
#if defined(JS_CRASH_DIAGNOSTICS) || defined(DEBUG)
T *thing = *thingp;
#endif
#ifdef JS_CRASH_DIAGNOSTICS
if (uintptr_t(thing) <= ArenaSize || (uintptr_t(thing) & 1) != 0) {