comctl32: Remove a useless assert from TREEVIEW_GetItemIndex.

This commit is contained in:
Rob Shearman 2008-02-15 10:05:41 +00:00 committed by Alexandre Julliard
parent fd291ed3d8
commit affe20164e
1 changed files with 0 additions and 2 deletions

View File

@ -241,8 +241,6 @@ TREEVIEW_GetInfoPtr(HWND hwnd)
static inline int
TREEVIEW_GetItemIndex(const TREEVIEW_INFO *infoPtr, HTREEITEM handle)
{
assert(infoPtr != NULL);
return DPA_GetPtrIndex(infoPtr->items, handle);
}