bug 634530 - Fennec fails to startup on Droid Pro when the device is connected to PC via USB r=mbrubeck a=blocking-fennec

This commit is contained in:
Brad Lassey 2011-02-16 12:02:10 -05:00
Родитель cfb842ff0a
Коммит 9841c8b449
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -216,7 +216,7 @@ class GeckoAppShell
if (Build.VERSION.SDK_INT >= 8) {
File extHome = geckoApp.getExternalFilesDir(null);
File extProf = new File (extHome, "mozilla");
if (extHome.exists())
if (extHome != null && extProf != null && extProf.exists())
moveDir(extProf, profileDir);
}
} else {
@ -231,7 +231,7 @@ class GeckoAppShell
File intHome = geckoApp.getFilesDir();
File intProf = new File(intHome, "mozilla");
if (intHome.exists())
if (intHome != null && intProf != null && intProf.exists())
moveDir(intProf, profileDir);
}
GeckoAppShell.putenv("HOME=" + homeDir);