diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-04-24 15:51:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 15:51:08 +0200 |
commit | 9dd441aa390f5abd8ed998af8b5d3f76fe2be90d (patch) | |
tree | a4709ffa3bb4491341b23e597d8f9c5f4ad869ab | |
parent | 32a25179f361f4645105257f36122671f7153d1b (diff) | |
parent | a794dadfa960506b0653ea87de675bb42cfe1644 (diff) | |
download | profani-tty-9dd441aa390f5abd8ed998af8b5d3f76fe2be90d.tar.gz |
Merge pull request #1080 from jubalh/omemo-no-device-id
OMEMO: Check if ID is present before using it
-rw-r--r-- | src/xmpp/omemo.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xmpp/omemo.c b/src/xmpp/omemo.c index 4b77ef23..ccf3c55b 100644 --- a/src/xmpp/omemo.c +++ b/src/xmpp/omemo.c @@ -359,7 +359,11 @@ _omemo_receive_devicelist(xmpp_stanza_t *const stanza, void *const userdata) xmpp_stanza_t *device; for (device = xmpp_stanza_get_children(list); device != NULL; device = xmpp_stanza_get_next(device)) { const char *id = xmpp_stanza_get_id(device); - device_list = g_list_append(device_list, GINT_TO_POINTER(strtoul(id, NULL, 10))); + if (id != NULL) { + device_list = g_list_append(device_list, GINT_TO_POINTER(strtoul(id, NULL, 10))); + } else { + log_error("OMEMO: received device without ID"); + } } } omemo_set_device_list(from, device_list); |