mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 13:45:10 +00:00
[CI/FIX] Fix potentially uninitialised key-values
This commit is contained in:
parent
064040c18f
commit
cf3bb5260b
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ MUCSetKey(XMPPCommandManager *m, char *from, XMLElement *form, XMLElement *out)
|
|||
char *chat_id;
|
||||
char *muc;
|
||||
|
||||
char *key, *val;
|
||||
char *key = NULL, *val = NULL;
|
||||
|
||||
ParseeLookupAffiliation(from, &affiliation, &role);
|
||||
Free(role);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue