Bug 752098 - Fix script filename marking with incremental GC (r=luke)

This commit is contained in:
Bill McCloskey 2012-05-07 16:56:57 -07:00
Родитель 70b3320cf1
Коммит 223be0b591
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -981,7 +981,7 @@ js::SaveScriptFilename(JSContext *cx, const char *filename)
* scripts or exceptions pointing to the filename may no longer be
* reachable.
*/
if (cx->compartment->needsBarrier() && rt->gcIsFull)
if (rt->gcIncrementalState == MARK && rt->gcIsFull)
sfe->marked = true;
#endif