diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MSN/msn_commands.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/protocols/MSN/msn_commands.cpp b/protocols/MSN/msn_commands.cpp index fbec551993..3fc028ad19 100644 --- a/protocols/MSN/msn_commands.cpp +++ b/protocols/MSN/msn_commands.cpp @@ -830,13 +830,15 @@ void CMsnProto::sttProcessStatusMessage(char* buf, unsigned len, const char* wli char* szStatMsg = ezxml_txt(ezxml_child(xmli, "PSM"));
stripBBCode(szStatMsg);
stripColorCode(szStatMsg);
- TCHAR *tszStatMsg = mir_utf8decodeT(szStatMsg);
- if (*tszStatMsg)
- DBWriteContactSettingTString(hContact, "CList", "StatusMsg", tszStatMsg);
- else
- DBDeleteContactSetting(hContact, "CList", "StatusMsg");
+ {
+ mir_ptr<TCHAR> tszStatMsg = mir_utf8decodeT(szStatMsg);
+ if (*tszStatMsg)
+ DBWriteContactSettingTString(hContact, "CList", "StatusMsg", tszStatMsg);
+ else
+ DBDeleteContactSetting(hContact, "CList", "StatusMsg");
- SendBroadcast(hContact, ACKTYPE_AWAYMSG, ACKRESULT_SUCCESS, NULL, (LPARAM)tszStatMsg);
+ SendBroadcast(hContact, ACKTYPE_AWAYMSG, ACKRESULT_SUCCESS, NULL, (LPARAM)tszStatMsg);
+ }
// Process current media info
const char* szCrntMda = ezxml_txt(ezxml_child(xmli, "CurrentMedia"));
|