зеркало из https://github.com/mozilla/pjs.git
Bug 656947 - NULL check the current canvas context when attempting to increment the malloc count. r=bz
This commit is contained in:
Родитель
fe5e0d184d
Коммит
178c87fef3
|
@ -1132,7 +1132,10 @@ nsCanvasRenderingContext2D::SetDimensions(PRInt32 width, PRInt32 height)
|
|||
}
|
||||
|
||||
gCanvasMemoryUsed += width * height * 4;
|
||||
JS_updateMallocCounter(nsContentUtils::GetCurrentJSContext(), width * height * 4);
|
||||
JSContext* context = nsContentUtils::GetCurrentJSContext();
|
||||
if (context) {
|
||||
JS_updateMallocCounter(context, width * height * 4);
|
||||
}
|
||||
}
|
||||
|
||||
return InitializeWithSurface(NULL, surface, width, height);
|
||||
|
|
Загрузка…
Ссылка в новой задаче