From 5ab9277014a338944af494bccc8395a4513fd1c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 10 Nov 2013 19:45:30 +0000 Subject: Facebook: fixed small memory leak git-svn-id: http://svn.miranda-ng.org/main/trunk@6862 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/FacebookRM/src/messages.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'protocols') diff --git a/protocols/FacebookRM/src/messages.cpp b/protocols/FacebookRM/src/messages.cpp index 0adbf44134..cb5abc57cb 100644 --- a/protocols/FacebookRM/src/messages.cpp +++ b/protocols/FacebookRM/src/messages.cpp @@ -133,9 +133,12 @@ void FacebookProto::SendTypingWorker(void *p) send_typing *typing = static_cast(p); + // TODO: don't send typing when we are not online? // Dont send typing notifications to contacts, that are offline or not friends - if (getWord(typing->hContact, "Status", 0) == ID_STATUS_OFFLINE || getWord(typing->hContact, FACEBOOK_KEY_CONTACT_TYPE, 0) != CONTACT_FRIEND) + if (getWord(typing->hContact, "Status", 0) == ID_STATUS_OFFLINE || getWord(typing->hContact, FACEBOOK_KEY_CONTACT_TYPE, 0) != CONTACT_FRIEND) { + delete typing; return; + } // TODO RM: maybe better send typing optimalization facy.is_typing_ = (typing->status == PROTOTYPE_SELFTYPING_ON); -- cgit v1.2.3