mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 01:10:22 +00:00
Fixed uninitialized variable...
This commit is contained in:
parent
d6f7d066b2
commit
01af9d76c0
@ -510,8 +510,8 @@ void nsDocLoaderImpl::LoadURLComplete(nsISupports* aBindInfo)
|
||||
if (PR_TRUE != rv) {
|
||||
nsDocumentBindInfo* docInfo;
|
||||
|
||||
docInfo->QueryInterface(kDocumentBindInfoIID, (void**)&docInfo);
|
||||
NS_ASSERTION((docInfo->GetStatus() == NS_BINDING_ABORTED),
|
||||
rv = aBindInfo->QueryInterface(kDocumentBindInfoIID, (void**)&docInfo);
|
||||
NS_ASSERTION(((NS_OK == rv) && (docInfo->GetStatus() == NS_BINDING_ABORTED)),
|
||||
"Entry was not Aborted!");
|
||||
}
|
||||
#endif /* NS_DEBUG */
|
||||
|
@ -510,8 +510,8 @@ void nsDocLoaderImpl::LoadURLComplete(nsISupports* aBindInfo)
|
||||
if (PR_TRUE != rv) {
|
||||
nsDocumentBindInfo* docInfo;
|
||||
|
||||
docInfo->QueryInterface(kDocumentBindInfoIID, (void**)&docInfo);
|
||||
NS_ASSERTION((docInfo->GetStatus() == NS_BINDING_ABORTED),
|
||||
rv = aBindInfo->QueryInterface(kDocumentBindInfoIID, (void**)&docInfo);
|
||||
NS_ASSERTION(((NS_OK == rv) && (docInfo->GetStatus() == NS_BINDING_ABORTED)),
|
||||
"Entry was not Aborted!");
|
||||
}
|
||||
#endif /* NS_DEBUG */
|
||||
|
Loading…
x
Reference in New Issue
Block a user