Fixing bug 336344. Crash loading svg pattern test. r+sr=tor@acm.org

This commit is contained in:
jwatt%jwatt.org 2006-05-03 14:52:50 +00:00
Родитель 03b6aab7ad
Коммит 7a7daabcc9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -721,7 +721,7 @@ NS_IMETHODIMP
nsSVGPatternFrame::GetHeight(float *aHeight)
{
nsSVGLength2 *len;
if ((len = GetHeight()) = nsnull) {
if ((len = GetHeight()) == nsnull) {
*aHeight = 0.0f;
return NS_ERROR_FAILURE;
}