Merge pull request #1715 from MarcoPolo-PasTonMolo/fix/ox-discover-segfault

Fix segfault on `/ox discover`
This commit is contained in:
Michael Vetter
2022-05-26 18:49:14 +02:00
committed by GitHub

View File

@@ -325,12 +325,15 @@ _ox_metadata_result(xmpp_stanza_t* const stanza, void* const userdata)
while (pubkeymetadata) { while (pubkeymetadata) {
const char* fingerprint = xmpp_stanza_get_attribute(pubkeymetadata, STANZA_ATTR_V4_FINGERPRINT); const char* fingerprint = xmpp_stanza_get_attribute(pubkeymetadata, STANZA_ATTR_V4_FINGERPRINT);
if (fingerprint) {
if (strlen(fingerprint) == KEYID_LENGTH) { if (strlen(fingerprint) == KEYID_LENGTH) {
cons_show(fingerprint); cons_show(fingerprint);
} else { } else {
cons_show("OX: Wrong char size of public key"); cons_show("OX: Wrong char size of public key");
log_error("[OX] Wrong chat size of public key %s", fingerprint); log_error("[OX] Wrong chat size of public key %s", fingerprint);
} }
}
pubkeymetadata = xmpp_stanza_get_next(pubkeymetadata); pubkeymetadata = xmpp_stanza_get_next(pubkeymetadata);
} }