Hi all. I've found that my application (with libjingle) is crashing
under Win Vista. Under Win XP everything is alright. Comment in
xmpppump.cc told me that xmppclent should be deleted by TaskRunner,
but when I start process messages in the work thread I found that
after first Dispatch() call, my xmpppump member (client_) has
unavailable value. My application is crashing in every instruction
using client_ object. What's happened?
Thanks.
XmppPump::XmppPump(XmppPumpNotify * notify) {
state_ = buzz::XmppEngine::STATE_NONE;
notify_ = notify;
client_ = new buzz::XmppClient(this); // NOTE: deleted by
TaskRunner
}