fixed null pointer

This commit is contained in:
Daniel Gultsch 2014-04-03 15:08:53 +02:00
parent 9d2d853e1b
commit 217d18b6ac
2 changed files with 12 additions and 5 deletions

View File

@ -75,4 +75,8 @@ public class TagWriter {
public boolean finished() {
return (this.writeQueue.size() == 0);
}
public boolean isActive() {
return outputStream != null;
}
}

View File

@ -678,6 +678,7 @@ public class XmppConnection implements Runnable {
public void sendIqPacket(IqPacket packet, OnIqPacketReceived callback) {
String id = nextRandomId();
packet.setAttribute("id", id);
packet.setFrom(account.getFullJid());
this.sendPacket(packet, callback);
}
@ -761,12 +762,14 @@ public class XmppConnection implements Runnable {
socket.close();
return;
}
tagWriter.finish();
while(!tagWriter.finished()) {
//Log.d(LOGTAG,"not yet finished");
Thread.sleep(100);
if (tagWriter.isActive()) {
tagWriter.finish();
while(!tagWriter.finished()) {
//Log.d(LOGTAG,"not yet finished");
Thread.sleep(100);
}
tagWriter.writeTag(Tag.end("stream:stream"));
}
tagWriter.writeTag(Tag.end("stream:stream"));
} catch (IOException e) {
Log.d(LOGTAG,"io exception during disconnect");
} catch (InterruptedException e) {