mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 12:32:55 +00:00
Didn't get the latest corrections in my patch in the checkin for 103912.
This commit is contained in:
parent
6d4ab9241d
commit
70f7cfa69f
@ -926,11 +926,11 @@ NS_IMETHODIMP nsChromeRegistry::GetDynamicInfo(nsIURI *aChromeURL, PRBool aIsOve
|
||||
|
||||
nsCOMPtr<nsIRDFDataSource> installSource;
|
||||
rv = GetDynamicDataSource(aChromeURL, aIsOverlay, PR_FALSE, PR_FALSE, getter_AddRefs(installSource));
|
||||
if (NS_FAILED(rv) || !installSource) return rv;
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
nsCOMPtr<nsIRDFDataSource> profileSource;
|
||||
if (mProfileInitialized) {
|
||||
rv = GetDynamicDataSource(aChromeURL, aIsOverlay, PR_TRUE, PR_FALSE, getter_AddRefs(profileSource));
|
||||
if (NS_FAILED(rv) || !profileSource) return rv;
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
}
|
||||
|
||||
nsCAutoString lookup;
|
||||
|
@ -926,11 +926,11 @@ NS_IMETHODIMP nsChromeRegistry::GetDynamicInfo(nsIURI *aChromeURL, PRBool aIsOve
|
||||
|
||||
nsCOMPtr<nsIRDFDataSource> installSource;
|
||||
rv = GetDynamicDataSource(aChromeURL, aIsOverlay, PR_FALSE, PR_FALSE, getter_AddRefs(installSource));
|
||||
if (NS_FAILED(rv) || !installSource) return rv;
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
nsCOMPtr<nsIRDFDataSource> profileSource;
|
||||
if (mProfileInitialized) {
|
||||
rv = GetDynamicDataSource(aChromeURL, aIsOverlay, PR_TRUE, PR_FALSE, getter_AddRefs(profileSource));
|
||||
if (NS_FAILED(rv) || !profileSource) return rv;
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
}
|
||||
|
||||
nsCAutoString lookup;
|
||||
|
Loading…
x
Reference in New Issue
Block a user