comctl32: Free the selection ranges (Coverity).

This commit is contained in:
Marcus Meissner 2013-01-07 22:17:39 +01:00 committed by Alexandre Julliard
parent 8105a1207b
commit 3173f17315
1 changed files with 8 additions and 2 deletions

View File

@ -3594,9 +3594,15 @@ static void LISTVIEW_SetGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
POINT ptItem;
rcItem.left = LVIR_BOUNDS;
if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) return;
if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) {
ranges_destroy (selection);
return;
}
rcSelMark.left = LVIR_BOUNDS;
if (!LISTVIEW_GetItemRect(infoPtr, infoPtr->nSelectionMark, &rcSelMark)) return;
if (!LISTVIEW_GetItemRect(infoPtr, infoPtr->nSelectionMark, &rcSelMark)) {
ranges_destroy (selection);
return;
}
UnionRect(&rcSel, &rcItem, &rcSelMark);
iterator_frameditems(&i, infoPtr, &rcSel);
while(iterator_next(&i))