another rare npe fixed

This commit is contained in:
iNPUTmice 2014-08-14 09:59:41 +02:00
parent b2cc17c362
commit 510d8a2ae3

View file

@ -416,8 +416,14 @@ public class XmppConnection implements Runnable {
NoSuchAlgorithmException {
tagReader.readTag(); // read tag close
if (!tagWriter.isActive()) {
throw new IOException();
}
tagWriter.setOutputStream(new ZLibOutputStream(tagWriter
.getOutputStream()));
if (tagReader.getInputStream() == null) {
throw new IOException();
}
tagReader
.setInputStream(new ZLibInputStream(tagReader.getInputStream()));