diff options
author | George Hazan <george.hazan@gmail.com> | 2015-03-12 22:16:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-03-12 22:16:37 +0000 |
commit | 75cff2d80be9ea6c5b946fbe59ef8bc56919f04d (patch) | |
tree | d4c531066101eb5e15453a7d45a7c8cbea67f981 /plugins/Dbx_mdb/src/dbsettings.cpp | |
parent | 44eb90b35fb7f6be9910d6d5e51bfeed36abe4c8 (diff) |
support for meta merge/split in LMDB
git-svn-id: http://svn.miranda-ng.org/main/trunk@12390 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/dbsettings.cpp')
-rw-r--r-- | plugins/Dbx_mdb/src/dbsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mdb/src/dbsettings.cpp b/plugins/Dbx_mdb/src/dbsettings.cpp index f9516e4a99..1d0a69bc0b 100644 --- a/plugins/Dbx_mdb/src/dbsettings.cpp +++ b/plugins/Dbx_mdb/src/dbsettings.cpp @@ -283,7 +283,7 @@ STDMETHODIMP_(BOOL) CDbxMdb::GetContactSettingStr(MCONTACT contactID, LPCSTR szM if (iSaveType == DBVT_WCHAR) {
if (dbv->type != DBVT_UTF8) {
int len = MultiByteToWideChar(CP_ACP, 0, dbv->pszVal, -1, NULL, 0);
- wchar_t* wszResult = (wchar_t*)mir_alloc((len + 1)*sizeof(wchar_t));
+ wchar_t *wszResult = (wchar_t*)mir_alloc((len + 1)*sizeof(wchar_t));
if (wszResult == NULL)
return 1;
|