diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-23 11:17:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-23 11:17:54 +0000 |
commit | e9e09da819c2f3b3a6405048232f38649d567b4d (patch) | |
tree | e1fd74c7c1567b8ea9d851ee5faf284228c4425a /plugins/Clist_modern/src/modern_clc.cpp | |
parent | b0856fbf8beebf4ffc5592096739e3d65c1bc3c7 (diff) |
fix for incorrect Win API calls
git-svn-id: http://svn.miranda-ng.org/main/trunk@14652 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clc.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clc.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.cpp b/plugins/Clist_modern/src/modern_clc.cpp index 2f31dc6777..34c9c76e16 100644 --- a/plugins/Clist_modern/src/modern_clc.cpp +++ b/plugins/Clist_modern/src/modern_clc.cpp @@ -1331,8 +1331,10 @@ static LRESULT clcOnDestroy(ClcData *dat, HWND hwnd, UINT msg, WPARAM wParam, LP ImageArray_Clear(&dat->avatar_cache); DeleteDC(dat->avatar_cache.hdc); ImageArray_Free(&dat->avatar_cache, FALSE); - if (dat->himlHighlight) + if (dat->himlHighlight) { ImageList_Destroy(dat->himlHighlight); + dat->himlHighlight = NULL; + } RowHeights_Free(dat); corecli.pfnContactListControlWndProc(hwnd, msg, wParam, lParam); |