Bug 743766 - Handle IllegalArgumentException in RedirOutputThread. r=ctalbert, a=test-only

This commit is contained in:
Geoff Brown 2012-04-17 19:42:08 -04:00
Родитель f4dd0e8abc
Коммит f112513ee8
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -137,6 +137,11 @@ public class RedirOutputThread extends Thread
{
e.printStackTrace();
}
catch (java.lang.IllegalArgumentException e)
{
// Bug 743766: InputStream.available() unexpectedly throws this sometimes
e.printStackTrace();
}
}
pProc.destroy();