Followup on bug 223084, fix bustage of static builds. Pass a null nsIFile* to the static component loader during autoregistration.

This commit is contained in:
bsmedberg%covad.net 2003-11-01 14:46:08 +00:00
Родитель 816b00b6cc
Коммит 0a35007c51
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3198,7 +3198,7 @@ nsComponentManagerImpl::AutoRegisterImpl(PRInt32 when,
if (NS_FAILED(rv)) return rv;
#ifdef ENABLE_STATIC_COMPONENT_LOADER
rv = mStaticComponentLoader->AutoRegisterComponents((PRInt32)when, dir);
rv = mStaticComponentLoader->AutoRegisterComponents((PRInt32)when, inDirSpec);
if (NS_FAILED(rv)) return rv;
#endif