Просмотр исходного кода

Merge "Check connection's error stream before reading from it"

tags/v2.0.0.201206130900-r
Christian Halstrick 12 лет назад
Родитель
Сommit
e05300b21d
1 измененных файлов: 5 добавлений и 1 удалений
  1. 5
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java

+ 5
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java Просмотреть файл

@@ -512,10 +512,14 @@ public class AmazonS3 {
final HttpURLConnection c) throws IOException {
final IOException err = new IOException(MessageFormat.format(JGitText.get().amazonS3ActionFailed
, action, key, HttpSupport.response(c), c.getResponseMessage()));
final InputStream errorStream = c.getErrorStream();
if (errorStream == null)
return err;

final ByteArrayOutputStream b = new ByteArrayOutputStream();
byte[] buf = new byte[2048];
for (;;) {
final int n = c.getErrorStream().read(buf);
final int n = errorStream.read(buf);
if (n < 0)
break;
if (n > 0)

Загрузка…
Отмена
Сохранить