diff options
| author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 17:49:58 +0000 | 
|---|---|---|
| committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 17:49:58 +0000 | 
| commit | 6fcfba2c46a456677b5825a899469ba4e8905448 (patch) | |
| tree | b4b6f6f9001b8609998a815ec1c7c92aa30b287e /plugins/NotesAndReminders/src | |
| parent | 24bed968f1e96aa4598d8dbe3a6e8a34dded3dc2 (diff) | |
replace strncpy to mir_strncpy
git-svn-id: http://svn.miranda-ng.org/main/trunk@13785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotesAndReminders/src')
| -rw-r--r-- | plugins/NotesAndReminders/src/options.cpp | 8 | ||||
| -rw-r--r-- | plugins/NotesAndReminders/src/reminders.cpp | 2 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/NotesAndReminders/src/options.cpp b/plugins/NotesAndReminders/src/options.cpp index 20ac2bab12..7706a76dcf 100644 --- a/plugins/NotesAndReminders/src/options.cpp +++ b/plugins/NotesAndReminders/src/options.cpp @@ -232,7 +232,7 @@ void RegisterFontServiceFonts()      _tcsncpy(fontid.group, _T(SECTIONNAME), SIZEOF(fontid.group));
      _tcsncpy(fontid.backgroundGroup, _T(SECTIONNAME), SIZEOF(fontid.backgroundGroup) );
 -	strncpy(fontid.dbSettingsGroup, MODULENAME, SIZEOF(fontid.dbSettingsGroup));
 +	mir_strncpy(fontid.dbSettingsGroup, MODULENAME, SIZEOF(fontid.dbSettingsGroup));
  	fontid.flags = FIDF_ALLOWREREGISTER | FIDF_DEFAULTVALID | FIDF_SAVEPOINTSIZE;
  	HDC hDC = GetDC(NULL);
 @@ -243,7 +243,7 @@ void RegisterFontServiceFonts()  	{
  		fontid.order = i;
  		mir_snprintf(szTemp, SIZEOF(szTemp), "Font%d", i);
 -		strncpy(fontid.prefix, szTemp, SIZEOF(fontid.prefix));
 +		mir_strncpy(fontid.prefix, szTemp, SIZEOF(fontid.prefix));
  		_tcsncpy(fontid.name, fontOptionsList[i].szDescr, SIZEOF(fontid.name));
  		fontid.deffontsettings.colour = fontOptionsList[i].defColour;
 @@ -262,7 +262,7 @@ void RegisterFontServiceFonts()  	colorid.cbSize = sizeof(ColourIDT);
  	_tcsncpy(colorid.group, _T(SECTIONNAME), SIZEOF(colorid.group));
 -	strncpy(colorid.dbSettingsGroup, MODULENAME, SIZEOF(fontid.dbSettingsGroup));
 +	mir_strncpy(colorid.dbSettingsGroup, MODULENAME, SIZEOF(fontid.dbSettingsGroup));
  	colorid.flags = 0;
  	for (int i = 0; i < SIZEOF(colourOptionsList); i++)
 @@ -270,7 +270,7 @@ void RegisterFontServiceFonts()  		colorid.order = i;
  		_tcsncpy(colorid.name, colourOptionsList[i].szName, SIZEOF(colorid.name));
  		colorid.defcolour = colourOptionsList[i].defColour;
 -		strncpy(colorid.setting, colourOptionsList[i].szSettingName, SIZEOF(colorid.setting));
 +		mir_strncpy(colorid.setting, colourOptionsList[i].szSettingName, SIZEOF(colorid.setting));
  		ColourRegisterT(&colorid);
  	}
 diff --git a/plugins/NotesAndReminders/src/reminders.cpp b/plugins/NotesAndReminders/src/reminders.cpp index 49a8530db7..8af81e76ec 100644 --- a/plugins/NotesAndReminders/src/reminders.cpp +++ b/plugins/NotesAndReminders/src/reminders.cpp @@ -801,7 +801,7 @@ BOOL CheckRemindersAndStart(void)  					char* S2 = strchr(g_RemindSMS, '@');
  					char* S1 = (char*)malloc(S2 - g_RemindSMS);
 -					strncpy(S1, g_RemindSMS, S2 - g_RemindSMS);
 +					mir_strncpy(S1, g_RemindSMS, S2 - g_RemindSMS);
  					S1[S2 - g_RemindSMS]= 0x0;
  					S2++;
  					Send(S1, S2, pReminder->Reminder ? pReminder->Reminder : "", NULL);
  | 
