зеркало из https://github.com/mozilla/pjs.git
fix for crashing.
This commit is contained in:
Родитель
233706ef10
Коммит
6240573521
|
@ -515,7 +515,7 @@ NS_IMETHODIMP nsRenderingContextGTK::CreateDrawingSurface(nsRect *aBounds,
|
||||||
}
|
}
|
||||||
|
|
||||||
g_return_val_if_fail (aBounds != NULL, NS_ERROR_FAILURE);
|
g_return_val_if_fail (aBounds != NULL, NS_ERROR_FAILURE);
|
||||||
g_return_val_if_fail ((aBounds->width != 0) && (aBounds->height != 0), NS_ERROR_FAILURE);
|
g_return_val_if_fail ((aBounds->width > 0) && (aBounds->height > 0), NS_ERROR_FAILURE);
|
||||||
|
|
||||||
pixmap = ::gdk_pixmap_new(mRenderingSurface->drawable, aBounds->width, aBounds->height, -1);
|
pixmap = ::gdk_pixmap_new(mRenderingSurface->drawable, aBounds->width, aBounds->height, -1);
|
||||||
nsDrawingSurfaceGTK * surface = new nsDrawingSurfaceGTK();
|
nsDrawingSurfaceGTK * surface = new nsDrawingSurfaceGTK();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче