Bug#164049: Fix SVGTransform.setMatrix(null) crash. Patch by <jonathan.watt@strath.ac.uk>. SVG only - not part of default builds.

This commit is contained in:
alex%croczilla.com 2004-06-17 19:48:18 +00:00
Родитель d563452e1c
Коммит 43372b4e11
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -243,6 +243,8 @@ NS_IMETHODIMP nsSVGTransform::GetAngle(float *aAngle)
/* void setMatrix (in nsIDOMSVGMatrix matrix); */
NS_IMETHODIMP nsSVGTransform::SetMatrix(nsIDOMSVGMatrix *matrix)
{
NS_ENSURE_ARG(matrix);
WillModify();
mType = SVG_TRANSFORM_MATRIX;