diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-19 19:29:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-19 19:29:23 +0000 |
commit | d87938b51d4c742c8deac1b7a263e8f766dfbf17 (patch) | |
tree | db8f0824b7d5ebb46fc6a67190afa52c9a67c966 /src | |
parent | bc71dc491b0487d465fac290224c27a1240281bf (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@9870 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/database/profilemanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/database/profilemanager.cpp b/src/modules/database/profilemanager.cpp index 0edb7e8380..2d45cb0e40 100644 --- a/src/modules/database/profilemanager.cpp +++ b/src/modules/database/profilemanager.cpp @@ -444,7 +444,7 @@ static void ExecuteMenu(HWND hwndDlg, LPARAM lParam) if (lvht.iItem == -1)
return;
- LVITEM tvi;
+ LVITEM tvi = { 0 };
tvi.mask = LVIF_IMAGE;
tvi.iItem = lvht.iItem;
if (!ListView_GetItem(hwndList, &tvi))
|