comctl32: Allocate the correct amount of memory for tab items in TAB_InsertItemT().

This commit is contained in:
Henri Verbeet 2011-04-12 17:39:19 +02:00 committed by Alexandre Julliard
parent 48f083b39d
commit e5c3883c92
1 changed files with 1 additions and 1 deletions

View File

@ -2644,7 +2644,7 @@ TAB_InsertItemT (TAB_INFO *infoPtr, INT iItem, const TCITEMW *pti, BOOL bUnicode
TAB_DumpItemExternalT(pti, iItem, bUnicode);
if (!(item = Alloc(sizeof(TAB_ITEM_SIZE(infoPtr))))) return FALSE;
if (!(item = Alloc(TAB_ITEM_SIZE(infoPtr)))) return FALSE;
if (DPA_InsertPtr(infoPtr->items, iItem, item) == -1)
{
Free(item);