[INCLUDE]

- Fix CListView::HitTest. Fixes stack corruption when dragging files on the desktop.
CORE-9143 #resolve

svn path=/trunk/; revision=66211
This commit is contained in:
Thomas Faber
2015-02-09 19:59:59 +00:00
parent c066cbd438
commit fd227cda35
+1 -1
View File
@@ -175,7 +175,7 @@ public:
int HitTest(LV_HITTESTINFO * phtInfo)
{
return (int)SendMessage(LVM_HITTEST, 0, reinterpret_cast<LPARAM>(&phtInfo));
return (int)SendMessage(LVM_HITTEST, 0, reinterpret_cast<LPARAM>(phtInfo));
}
DWORD_PTR GetItemData(int i)