Fixed possible NPE between callbacks (as client and server are not synchronized between calls)

This commit is contained in:
magenoxx 2011-06-22 20:35:16 +04:00
parent 2977afea2d
commit c7ae032d5a
2 changed files with 8 additions and 2 deletions

View file

@ -64,7 +64,9 @@ public class CallbackClientDaemon extends Thread {
@Override
public void run() {
try {
client.processCallback(callback);
if (callback != null) {
client.processCallback(callback);
}
}
catch (Exception ex) {
logger.fatal("CallbackClientDaemon error ", ex);