mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 09:46:21 +00:00
Free id for OTR messages
This commit is contained in:
@@ -110,7 +110,8 @@ static void
|
||||
cb_inject_message(void *opdata, const char *accountname,
|
||||
const char *protocol, const char *recipient, const char *message)
|
||||
{
|
||||
message_send_chat_otr(recipient, message);
|
||||
char *id = message_send_chat_otr(recipient, message);
|
||||
free(id);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -291,7 +292,8 @@ otr_on_message_recv(const char * const barejid, const char * const resource, con
|
||||
memmove(whitespace_base, whitespace_base+tag_length, tag_length);
|
||||
char *otr_query_message = otr_start_query();
|
||||
cons_show("OTR Whitespace pattern detected. Attempting to start OTR session...");
|
||||
message_send_chat_otr(barejid, otr_query_message);
|
||||
char *id = message_send_chat_otr(barejid, otr_query_message);
|
||||
free(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -304,7 +306,8 @@ otr_on_message_recv(const char * const barejid, const char * const resource, con
|
||||
if (policy == PROF_OTRPOLICY_ALWAYS && *was_decrypted == FALSE && !whitespace_base) {
|
||||
char *otr_query_message = otr_start_query();
|
||||
cons_show("Attempting to start OTR session...");
|
||||
message_send_chat_otr(barejid, otr_query_message);
|
||||
char *id = message_send_chat_otr(barejid, otr_query_message);
|
||||
free(id);
|
||||
}
|
||||
|
||||
return decrypted;
|
||||
|
||||
Reference in New Issue
Block a user