Browse Source

Merge "Fix NPE on reading global config on MAC" into stable-0.11

tags/v0.11.1
Chris Aniszczyk 13 years ago
parent
commit
b46e06bc74
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java

+ 6
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java View File

@@ -66,7 +66,12 @@ abstract class FS_POSIX extends FS {
String w = readPipe(userHome(), //
new String[] { "bash", "--login", "-c", "which git" }, //
Charset.defaultCharset().name());
return new File(w).getParentFile().getParentFile();
if (w == null || w.length() == 0)
return null;
File parentFile = new File(w).getParentFile();
if (parentFile == null)
return null;
return parentFile.getParentFile();
}

return null;

Loading…
Cancel
Save