Bug 282579 - fix missed use of a null surface in cairo. r+sr=roc

This commit is contained in:
tor%cs.brown.edu 2005-08-30 21:05:18 +00:00
Родитель 165eb6a4a3
Коммит 31962e1189
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -710,8 +710,8 @@ nsSVGCairoGlyphGeometry::GetBoundingBox(nsIDOMSVGRect * *aBoundingBox)
return NS_ERROR_FAILURE;
double xmin, ymin, xmax, ymax;
// NULL isn't legal here without our patch to cairo.c
cairo_t *ctx = cairo_create(nsnull);
cairo_t *ctx = cairo_create(gSVGCairoDummySurface);
GetGlobalTransform(ctx, nsnull);