diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-10-21 09:50:13 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-10-21 09:50:13 +0200 |
commit | 963ab841b42fdb1d80594b609a589a25b4034aa7 (patch) | |
tree | 84e86c11c7d51fd5202d258bdb46f49119840621 | |
parent | 8a5932b251e2af59680725f16acee9c3736b3c76 (diff) | |
download | profani-tty-963ab841b42fdb1d80594b609a589a25b4034aa7.tar.gz |
Set prof_ident to NULL after free
This caused the bug mentioned in the PR comment: ``` It seems with the changes done here we get a crash in: src/xmpp/message.c message_handlers_init() when looking up handlers: ProfMessageHandler *handler = g_hash_table_lookup(pubsub_event_handlers, curr->data);. Steps to reproduce: open Profanity and connect /autoping set 10 /autoping timeout 10 stop WiFi/connection wait for Lost connection restart wifi /connect ```
-rw-r--r-- | src/xmpp/connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index 63cd8211..e121d9a6 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -247,6 +247,7 @@ connection_disconnect(void) } free(prof_identifier); + prof_identifier = NULL; } void @@ -681,7 +682,7 @@ static void _compute_identifier(const char *barejid) assert(b64 != NULL); g_free(hmac); - //in case of reconnect + //in case of reconnect (lost connection) free(prof_identifier); prof_identifier = b64; |