am 86da47e8: Fix possible NPE in FileUtils.

* commit '86da47e8d72f275b7f6e111930dfe205cb34423f':
  Fix possible NPE in FileUtils.
main
Keisuke Kuroyanagi 2013-12-26 22:07:20 -08:00 committed by Android Git Automerger
commit 913173131e
1 changed files with 8 additions and 2 deletions

View File

@ -25,8 +25,11 @@ import java.io.FilenameFilter;
public class FileUtils {
public static boolean deleteRecursively(final File path) {
if (path.isDirectory()) {
for (final File child : path.listFiles()) {
deleteRecursively(child);
final File[] files = path.listFiles();
if (files != null) {
for (final File child : files) {
deleteRecursively(child);
}
}
}
return path.delete();
@ -37,6 +40,9 @@ public class FileUtils {
return false;
}
final File[] files = dir.listFiles(fileNameFilter);
if (files == null) {
return false;
}
boolean hasDeletedAllFiles = true;
for (final File file : files) {
if (!deleteRecursively(file)) {