mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Fixed issue with lime file transfer
This commit is contained in:
parent
46dbc8a4cb
commit
6bcf9311cc
1 changed files with 3 additions and 1 deletions
|
|
@ -642,7 +642,9 @@ void ChatMessagePrivate::processResponseFromPostFile(const belle_http_response_e
|
|||
}
|
||||
|
||||
// dump the xml into msg->message
|
||||
xmlDocDumpFormatMemoryEnc(xmlMessageBody, (xmlChar **)&cText, &xmlStringLength, "UTF-8", 0);
|
||||
char *buffer;
|
||||
xmlDocDumpFormatMemoryEnc(xmlMessageBody, (xmlChar **)&buffer, &xmlStringLength, "UTF-8", 0);
|
||||
setText(buffer);
|
||||
break;
|
||||
}
|
||||
xmlFree(typeAttribute);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue