Bug 626472 part 1 - Define nsnull as nullptr where available; r=ehsan
This commit is contained in:
@@ -548,7 +548,7 @@ nsHtml5TreeBuilder::endTokenization()
|
||||
stack[currentPtr]->release();
|
||||
currentPtr--;
|
||||
}
|
||||
stack = nsnull;
|
||||
stack = 0;
|
||||
}
|
||||
if (listOfActiveFormattingElements) {
|
||||
while (listPtr > -1) {
|
||||
@@ -557,9 +557,9 @@ nsHtml5TreeBuilder::endTokenization()
|
||||
}
|
||||
listPtr--;
|
||||
}
|
||||
listOfActiveFormattingElements = nsnull;
|
||||
listOfActiveFormattingElements = 0;
|
||||
}
|
||||
charBuffer = nsnull;
|
||||
charBuffer = 0;
|
||||
end();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user