diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-23 17:51:31 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-23 17:51:31 +0000 |
commit | d0602c28cc309845567dd24b0cfd614ddb0c2784 (patch) | |
tree | e8256536edd42db3819cfa9233420c6102478fb2 /plugins | |
parent | acc6a7b1e6fb438e4534087f0a12cf1ab9dd3107 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@5456 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/chat/clist.cpp | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/chat/log.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/chat/clist.cpp b/plugins/TabSRMM/src/chat/clist.cpp index 363e815947..b570c360f1 100644 --- a/plugins/TabSRMM/src/chat/clist.cpp +++ b/plugins/TabSRMM/src/chat/clist.cpp @@ -267,7 +267,7 @@ BOOL CList_AddEvent(HANDLE hContact, HICON Icon, HANDLE event, int type, const T return FALSE;
va_start(marker, fmt);
- mir_vsntprintf(szBuf, _tcslen(szBuf), fmt, marker);
+ _vstprintf(szBuf, fmt, marker); //!!!!!!!!
va_end(marker);
cle.cbSize = sizeof(cle);
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp index 51ef5776b3..0d45441233 100644 --- a/plugins/TabSRMM/src/chat/log.cpp +++ b/plugins/TabSRMM/src/chat/log.cpp @@ -617,11 +617,11 @@ static int Log_AppendRTF(LOGSTREAMDATA* streamData, BOOL simpleMode, char **buff d += 5;
} else if ((*line == '\\' || *line == '{' || *line == '}') && !streamData->bStripFormat) {
*d++ = '\\';
- *d++ = (char)*line;
+ *d++ = (char) * line;
} else if (*line > 0 && *line < 128) {
- *d++ = (char)*line;
+ *d++ = (char) * line;
}
- else d += mir_snprintf(d, strlen(d), "\\u%u ?", (WORD)*line);
+ else d += sprintf(d, "\\u%u ?", (WORD) * line); //!!!!!!!!!
}
*cbBufferEnd = (int)(d - *buffer);
|