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