Fixing bug 333733. Could leak attr in nsFrameUtil::Tag::ReadAttrs. r+sr=dbaron@mozilla.com

This commit is contained in:
jwatt%jwatt.org 2006-04-20 00:13:34 +00:00
parent 0f639ba66a
commit 82e9d59379

View File

@ -437,6 +437,7 @@ nsFrameUtil::Tag::ReadAttrs(FILE* aFile)
if (Expect(aFile, '=')) {
value = ReadString(aFile);
if (nsnull == value) {
delete [] attr;
break;
}
}