fixed npe in tag writer

This commit is contained in:
Daniel Gultsch 2014-05-13 10:23:26 +02:00
parent cce12af766
commit ad9b9b9096

View File

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