mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
Fixing build bustage on linux, added a missing .get() on a nsCOMPtr. a=leaf@mozilla.org
This commit is contained in:
parent
213b402982
commit
22c68ca282
@ -801,7 +801,7 @@ nsXMLContentSink::CloseContainer(const nsIParserNode& aNode)
|
||||
if (popContent) {
|
||||
content = getter_AddRefs(PopContent());
|
||||
if (content) {
|
||||
if (mDocElement == content) {
|
||||
if (mDocElement == content.get()) {
|
||||
mState = eXMLContentSinkState_InEpilog;
|
||||
}
|
||||
}
|
||||
|
@ -801,7 +801,7 @@ nsXMLContentSink::CloseContainer(const nsIParserNode& aNode)
|
||||
if (popContent) {
|
||||
content = getter_AddRefs(PopContent());
|
||||
if (content) {
|
||||
if (mDocElement == content) {
|
||||
if (mDocElement == content.get()) {
|
||||
mState = eXMLContentSinkState_InEpilog;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user