зеркало из https://github.com/mozilla/gecko-dev.git
bug 408148. use nsAutoTArray rather than nsTArray in nsXBLService::GetBinding. r/sr=sicking
This commit is contained in:
Родитель
c401ca956c
Коммит
25c8227abf
|
@ -728,7 +728,7 @@ nsXBLService::GetBinding(nsIContent* aBoundElement, nsIURI* aURI,
|
|||
PRBool* aIsReady, nsXBLBinding** aResult)
|
||||
{
|
||||
// More than 6 binding URIs are rare, see bug 55070 comment 18.
|
||||
nsTArray<nsIURI*> uris(6);
|
||||
nsAutoTArray<nsIURI*, 6> uris;
|
||||
return GetBinding(aBoundElement, aURI, aPeekOnly, aOriginPrincipal, aIsReady,
|
||||
aResult, uris);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче