bug 701703 - Null pointer exception thrown loading Fennec Start Page r=dougt

This commit is contained in:
Brad Lassey 2011-11-19 19:46:31 -05:00
parent e9fd25d3da
commit 1f13029a36

View File

@ -129,6 +129,8 @@ public class GeckoSoftwareLayerClient extends LayerClient {
public void endDrawing(int x, int y, int width, int height, String metadata) {
try {
LayerController controller = getLayerController();
if (controller == null)
return;
controller.notifyViewOfGeometryChange();
try {