diff options
Diffstat (limited to 'protocols/MRA')
-rw-r--r-- | protocols/MRA/src/MraRTFMsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/src/MraRTFMsg.cpp b/protocols/MRA/src/MraRTFMsg.cpp index f69d080b26..fd7fa41bd9 100644 --- a/protocols/MRA/src/MraRTFMsg.cpp +++ b/protocols/MRA/src/MraRTFMsg.cpp @@ -202,7 +202,7 @@ DWORD CMraProto::MraConvertToRTFW(LPCWSTR lpwszMessage, size_t dwMessageSize, LP return ERROR_BUFFER_OVERFLOW;
}
- mir_ptr<CHAR> lpszMessage((LPSTR)mir_calloc(dwMessageSize+32));
+ ptrA lpszMessage((LPSTR)mir_calloc(dwMessageSize+32));
if (!lpszMessage)
return GetLastError();
|