Commit d3868281 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

oleview: Fix size parameter for memset (Coccinelle).

parent caaf027e
......@@ -278,7 +278,7 @@ static void AddChildrenData(HTREEITEM hParent, TYPELIB_DATA *pData)
HTREEITEM hCur;
TVITEM tvi;
memset(&tvi, 0, sizeof(&tvi));
memset(&tvi, 0, sizeof(tvi));
hCur = TreeView_GetChild(typelib.hTree, hParent);
if(!hCur) return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment