[MOD] Basic work to get XMPP avatars through PEP

Attaboy!
This commit is contained in:
LDA 2024-09-19 23:24:46 +02:00
commit e54332e376
13 changed files with 428 additions and 25 deletions

View file

@ -109,7 +109,7 @@ ParseAyadoc(char *raw)
if (parsing_notes)
{
char *del = strchr(line_content, ':');
char *val = del + 1;
char *val = del ? del + 1 : NULL;
if (del && strlen(del) >= 1)
{
while (*val && isspace(*val))