diff options
author | James Booth <boothj5@gmail.com> | 2015-05-24 00:56:13 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-05-24 00:56:13 +0100 |
commit | 2241473ee62b7d5d60d20ef0c264e6080cbba8db (patch) | |
tree | 17b148c62e3e67d545a4522195381fb158254946 /src/otr | |
parent | 520b2d259849edf43cfd7942a13d2e12aaec699a (diff) | |
download | profani-tty-2241473ee62b7d5d60d20ef0c264e6080cbba8db.tar.gz |
Added bad password test
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index e568af56..4d97cfb9 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -163,6 +163,8 @@ otr_init(void) log_info("Initialising OTR"); OTRL_INIT; + jid = NULL; + ops.policy = cb_policy; ops.is_logged_in = cb_is_logged_in; ops.inject_message = cb_inject_message; @@ -181,6 +183,7 @@ otr_shutdown(void) { if (jid) { free(jid); + jid = NULL; } } @@ -747,4 +750,4 @@ void otr_free_message(char *message) { otrl_message_free(message); -} \ No newline at end of file +} |