diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 17:11:02 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 17:11:02 +0000 |
commit | bb4a25ee1fb590c3fc84177d3c9518add8ac0c58 (patch) | |
tree | 5a1ada25953df7d73df6e4d434e2a94dc2a345fc /plugins/Utils/mir_options.cpp | |
parent | 7a514de5df654c9fe1d26c889f4317b5650f84ec (diff) |
cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13623 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils/mir_options.cpp')
-rw-r--r-- | plugins/Utils/mir_options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Utils/mir_options.cpp b/plugins/Utils/mir_options.cpp index 12b2d5466d..a90cf77148 100644 --- a/plugins/Utils/mir_options.cpp +++ b/plugins/Utils/mir_options.cpp @@ -77,7 +77,7 @@ static void PathToRelative(TCHAR *pOut, size_t outSize, const TCHAR *pSrc) size_t len = mir_tstrlen(dbPath);
if (!_tcsnicmp(pSrc, dbPath, len))
len = 0;
- _tcsncpy_s(pOut, outSize, (pSrc + len), _TRUNCATE);
+ mir_tstrncpy(pOut, pSrc + len, outSize);
}
}
|