Bug 734847 part 2 - treewide changes resulting from the default-infallibility of hashtables; either remove useless result checks, or use the fallible version of APIs, depending on context, r=jlebar

This commit is contained in:
Benjamin Smedberg
2012-05-18 13:30:49 -04:00
parent e14bd0e946
commit 2b55dddfca
107 changed files with 322 additions and 714 deletions

View File

@@ -53,7 +53,7 @@ nsHtml5StringParser::nsHtml5StringParser()
, mTokenizer(new nsHtml5Tokenizer(mTreeBuilder, false))
{
MOZ_COUNT_CTOR(nsHtml5StringParser);
mAtomTable.Init(); // we aren't checking for OOM anyway...
mAtomTable.Init();
mTokenizer->setInterner(&mAtomTable);
}