[SHELL32] CDefView: Prevent use after free

While updating the item, the LVIF_STATE would be requested,
for which the old lParam would be accessed.
This commit is contained in:
Mark Jansen 2021-05-26 22:57:43 +02:00
parent 949e3a9cec
commit f0bee6c4bc
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -861,7 +861,8 @@ BOOLEAN CDefView::LV_RenameItem(PCUITEMID_CHILD pidlOld, PCUITEMID_CHILD pidlNew
lvItem.iSubItem = 0;
m_ListView.GetItem(&lvItem);
SHFree(reinterpret_cast<LPVOID>(lvItem.lParam));
LPVOID oldPidl = reinterpret_cast<LPVOID>(lvItem.lParam); /* Store the old pidl until the new item is replaced */
lvItem.mask = LVIF_PARAM | LVIF_IMAGE | LVIF_TEXT;
lvItem.iItem = nItem;
lvItem.iSubItem = 0;
@ -870,6 +871,9 @@ BOOLEAN CDefView::LV_RenameItem(PCUITEMID_CHILD pidlOld, PCUITEMID_CHILD pidlNew
lvItem.iImage = SHMapPIDLToSystemImageListIndex(m_pSFParent, pidlNew, 0);
m_ListView.SetItem(&lvItem);
m_ListView.Update(nItem);
SHFree(oldPidl); /* Now that the new item is in place, we can safely release the old pidl */
return TRUE; /* FIXME: better handling */
}