瀏覽代碼

Fix copy-paste typo in CloneCommand#cleanup

deleteChildren was called on directory instead of gitDir, leading to a
potential null pointer exception if the git directory existed initially.

Bug: 550340
Change-Id: Iafc3b2961253a99862a59e81c7371f7bc564b412
Signed-off-by: Adrien Bustany <adrien-xx-eclipse@bustany.org>
tags/v5.1.10.201908230655-r
Adrien Bustany 4 年之前
父節點
當前提交
28553c189c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java 查看文件

@@ -700,7 +700,7 @@ public class CloneCommand extends TransportCommand<CloneCommand, Git> {
FileUtils.delete(gitDir, FileUtils.RECURSIVE
| FileUtils.SKIP_MISSING | FileUtils.IGNORE_ERRORS);
} else {
deleteChildren(directory);
deleteChildren(gitDir);
}
}
} catch (IOException e) {

Loading…
取消
儲存