зеркало из https://github.com/mozilla/gecko-dev.git
check for null properly
This commit is contained in:
Родитель
342229275a
Коммит
fdd95dbe9d
|
@ -386,8 +386,10 @@ NS_IMETHODIMP nsRenderingContextGTK::GetClipRect(nsRect &aRect, PRBool &aClipVal
|
|||
{
|
||||
PRInt32 x, y, w, h;
|
||||
|
||||
if (!mClipRegion || !mClipRegion->IsEmpty())
|
||||
{
|
||||
if (!mClipRegion)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
if (!mClipRegion->IsEmpty()) {
|
||||
mClipRegion->GetBoundingBox(&x,&y,&w,&h);
|
||||
aRect.SetRect(x,y,w,h);
|
||||
aClipValid = PR_TRUE;
|
||||
|
|
Загрузка…
Ссылка в новой задаче