comctl32/treeview: Remove redundant initializer (Clang).
This commit is contained in:
parent
7d31d39f00
commit
7445dcee05
|
@ -3026,7 +3026,7 @@ TREEVIEW_CountChildren(const TREEVIEW_ITEM *item)
|
||||||
static HDPA
|
static HDPA
|
||||||
TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM *item)
|
TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM *item)
|
||||||
{
|
{
|
||||||
HTREEITEM child = item->firstChild;
|
HTREEITEM child;
|
||||||
|
|
||||||
HDPA list = DPA_Create(8);
|
HDPA list = DPA_Create(8);
|
||||||
if (list == 0) return NULL;
|
if (list == 0) return NULL;
|
||||||
|
|
Loading…
Reference in New Issue