Fix use of the wrong variable that causes the same argument to be passed twice to NSGetModule. b=316416 r=bsmedberg

This commit is contained in:
dbaron%dbaron.org 2006-11-22 18:01:37 +00:00
Родитель 5be2517cdc
Коммит 1d842a82b4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -557,7 +557,7 @@ mozJSComponentLoader::LoadModule(nsILocalFile* aComponentFile,
return rv;
}
rv = cm_holder->GetJSObject(&file_jsobj);
rv = file_holder->GetJSObject(&file_jsobj);
if (NS_FAILED(rv)) {
return rv;
}