Bug 1015339 - Spot fix FormatStackDump. (r=bz)

This commit is contained in:
Shu-yu Guo 2014-06-27 13:29:03 -07:00
Родитель 87bd3e6f3a
Коммит 12ce7f92fe
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1055,7 +1055,7 @@ FormatFrame(JSContext *cx, const NonBuiltinScriptFrameIter &iter, char *buf, int
RootedValue thisVal(cx);
AutoPropertyDescArray thisProps(cx);
if (iter.computeThis(cx)) {
if (iter.hasUsableAbstractFramePtr() && iter.computeThis(cx)) {
thisVal = iter.computedThisValue();
if (showThisProps && thisVal.isObject()) {
RootedObject thisObj(cx, &thisVal.toObject());