fix for rtm++ bug 52181. r=sspitzer sr=mscott. Removed return upon unsuccessful migration. Now it drops through and deletes the progress window as it should.

This commit is contained in:
dbragg%netscape.com 2000-10-05 22:36:27 +00:00
Родитель ddbe4ce37c
Коммит ac98f30ea3
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -364,8 +364,7 @@ extern "C" void ProfileMigrationController(void *data)
if (NS_FAILED(rv))
{
migrator->mErrorCode = rv;
printf("failed to migrate properly. err=%d\n",rv);
return;
printf("failed to migrate properly. err=%d\n",rv);
}
}
else