fixed npe in tag writer

This commit is contained in:
Daniel Gultsch 2014-05-13 10:23:26 +02:00
parent cce12af766
commit ad9b9b9096
1 changed files with 6 additions and 2 deletions

View File

@ -23,8 +23,12 @@ public class TagWriter {
}
try {
AbstractStanza output = writeQueue.take();
outputStream.write(output.toString());
outputStream.flush();
if (outputStream==null) {
shouldStop = true;
} else {
outputStream.write(output.toString());
outputStream.flush();
}
} catch (IOException e) {
shouldStop = true;
} catch (InterruptedException e) {