diff options
Diffstat (limited to 'plugins/Msg_Export/src/options.cpp')
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 7765d1cc95..7dff1cf799 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -1043,7 +1043,7 @@ BOOL bApplyChanges2(HWND hwndDlg) enDeleteAction = eDANothing;
char szTemp[500];
- mir_strcpy(szTemp, "DisableProt_");
+ strncpy_s(szTemp, "DisableProt_", _TRUNCATE);
HWND hMapUser = GetDlgItem(hwndDlg, IDC_EXPORT_PROTOS);
int nCount = ListView_GetItemCount(hMapUser);
|