diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-21 20:28:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-21 20:28:02 +0000 |
commit | c4ba8af1dbc6a50001bb5a720c1e5018b18ffd1c (patch) | |
tree | 5a5231657ab93a0397cd97041b7ac3aa6d4873ee /plugins/UserInfoEx | |
parent | 39473dbc26de132931a909b1563b808f53bb51de (diff) |
fix for non-zeroed structures
git-svn-id: http://svn.miranda-ng.org/main/trunk@123 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r-- | plugins/UserInfoEx/svc_refreshci.cpp | 5 | ||||
-rw-r--r-- | plugins/UserInfoEx/svc_reminder.cpp | 8 |
2 files changed, 3 insertions, 10 deletions
diff --git a/plugins/UserInfoEx/svc_refreshci.cpp b/plugins/UserInfoEx/svc_refreshci.cpp index f091a5635b..fa3b00a584 100644 --- a/plugins/UserInfoEx/svc_refreshci.cpp +++ b/plugins/UserInfoEx/svc_refreshci.cpp @@ -922,15 +922,12 @@ static INT OnPreShutdown(WPARAM, LPARAM) **/
VOID SvcRefreshContactInfoLoadModule(VOID)
{
- HOTKEYDESC hk;
-
myCreateServiceFunction(MS_USERINFO_REFRESH, RefreshService);
HookEvent(ME_SYSTEM_PRESHUTDOWN, OnPreShutdown);
HookEvent(ME_DB_CONTACT_ADDED, OnContactAdded);
+ HOTKEYDESC hk = { 0 };
hk.cbSize = sizeof(HOTKEYDESC);
- hk.lParam = NULL;
- hk.DefHotKey = NULL;
hk.pszSection = MODNAME;
hk.pszName = "RefreshContactDetails";
hk.pszDescription = LPGEN("Refresh Contact Details");
diff --git a/plugins/UserInfoEx/svc_reminder.cpp b/plugins/UserInfoEx/svc_reminder.cpp index d299fc06f6..29441a8fc2 100644 --- a/plugins/UserInfoEx/svc_reminder.cpp +++ b/plugins/UserInfoEx/svc_reminder.cpp @@ -1202,10 +1202,7 @@ VOID SvcReminderOnModulesLoaded(VOID) VOID SvcReminderLoadModule(VOID)
{
// init sounds
- SKINSOUNDDESCEX ssd;
- HOTKEYDESC hk;
-
- ZeroMemory(&ssd, sizeof(ssd));
+ SKINSOUNDDESCEX ssd = { 0 };
ssd.cbSize = SKINSOUNDDESC_SIZE_V1;
ssd.pszSection = LPGEN(MODNAME);
@@ -1228,9 +1225,8 @@ VOID SvcReminderLoadModule(VOID) myCreateServiceFunction(MS_USERINFO_REMINDER_CHECK, CheckService);
myCreateServiceFunction(MS_USERINFO_REMINDER_AGGRASIVEBACKUP, BackupBirthdayService);
+ HOTKEYDESC hk = { 0 };
hk.cbSize = sizeof(HOTKEYDESC);
- hk.lParam = NULL;
- hk.DefHotKey = NULL;
hk.pszSection = MODNAME;
hk.pszName = "ReminderCheck";
hk.pszDescription = LPGEN("Check anniversaries");
|