Didn't get the latest corrections in my patch in the checkin for 103912.

This commit is contained in:
hyatt%netscape.com 2002-04-04 10:39:40 +00:00
parent 6d4ab9241d
commit 70f7cfa69f
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;