git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1032188 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -269,6 +269,7 @@ Philip Hourihane | |||||
| Phillip Wells | Phillip Wells | ||||
| Pierre Delisle | Pierre Delisle | ||||
| Pierre Dittgen | Pierre Dittgen | ||||
| riasol | |||||
| R Handerson | R Handerson | ||||
| Rami Ojares | Rami Ojares | ||||
| Randy Watler | Randy Watler | ||||
| @@ -192,6 +192,9 @@ Fixed bugs: | |||||
| provided using non-fileset resource collections. | provided using non-fileset resource collections. | ||||
| Bugzilla Issue 50115. | Bugzilla Issue 50115. | ||||
| * ftp chmod could throw a NPE. | |||||
| Bugzilla report 50217. | |||||
| Other changes: | Other changes: | ||||
| -------------- | -------------- | ||||
| @@ -1468,4 +1468,8 @@ | |||||
| <first>Zdenek</first> | <first>Zdenek</first> | ||||
| <last>Wagner</last> | <last>Wagner</last> | ||||
| </name> | </name> | ||||
| <name> | |||||
| <first/> | |||||
| <last>riasol</last> | |||||
| </name> | |||||
| </contributors> | </contributors> | ||||
| @@ -2102,7 +2102,7 @@ public class FTP extends Task implements FTPTaskConfig { | |||||
| myReply = ftp.getReplyStrings(); | myReply = ftp.getReplyStrings(); | ||||
| for (int x = 0; x < myReply.length; x++) { | for (int x = 0; x < myReply.length; x++) { | ||||
| if (myReply[x].indexOf("200") == -1) { | |||||
| if (myReply[x] != null && myReply[x].indexOf("200") == -1) { | |||||
| log(myReply[x], Project.MSG_WARN); | log(myReply[x], Project.MSG_WARN); | ||||
| } | } | ||||
| } | } | ||||