mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
the arguments to this function can be null-pointers, bug 124986 r=karnaze sr=attinasi
This commit is contained in:
parent
8d8444abd3
commit
088b2fee17
@ -304,13 +304,17 @@ NS_IMETHODIMP nsWebBrowserChrome::GetDimensions(PRUint32 aFlags, PRInt32 *aX, PR
|
||||
mBrowserWindow->GetPositionAndSize(&x, &y, &cx, &cy);
|
||||
if (aFlags & DIM_FLAGS_POSITION)
|
||||
{
|
||||
*aX = x;
|
||||
*aY = y;
|
||||
if(aX)
|
||||
*aX = x;
|
||||
if(aY)
|
||||
*aY = y;
|
||||
}
|
||||
if (aFlags & DIM_FLAGS_SIZE_INNER || aFlags & DIM_FLAGS_SIZE_OUTER)
|
||||
{
|
||||
*aCX = cx;
|
||||
*aCY = cy;
|
||||
if(aCX)
|
||||
*aCX = cx;
|
||||
if(aCY)
|
||||
*aCY = cy;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user