Bug 327507 - unitialized variable use when positioning glyphs for

<text> without x/y. r+sr=roc
This commit is contained in:
tor%cs.brown.edu 2006-02-17 16:30:23 +00:00
Родитель 995f7e1d52
Коммит 60749d817a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1194,7 +1194,7 @@ nsSVGTextFrame::UpdateGlyphPositioning()
firstFragment = node->GetFirstGlyphFragment();
float x, y;
float x = 0, y = 0;
{
nsCOMPtr<nsIDOMSVGLengthList> list = GetX();