Backed out changeset 0ca9044bb930 (bug 1356693) for android crashes

--HG--
extra : rebase_source : 689c8de0aaee267b02e5d79af840ecf969739648
This commit is contained in:
Carsten "Tomcat" Book 2017-04-27 15:20:09 +02:00
Родитель 1b10cd192e
Коммит 95c30cae37
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -90,7 +90,11 @@ public class IOUtils {
} catch (IOException e) {
Log.e(LOGTAG, "Error consuming input stream.", e);
} finally {
IOUtils.safeStreamClose(iStream);
try {
iStream.close();
} catch (IOException e) {
Log.e(LOGTAG, "Error closing input stream.", e);
}
}
return null;