[WSHTCPIP]

- Fix incorrect sizeof in SHIoctl_GetInterfaceList. CID 1401188

svn path=/trunk/; revision=73841
This commit is contained in:
Thomas Faber 2017-02-19 12:21:06 +00:00
parent 8b8c1c7e5a
commit e4bf71987b

View file

@ -236,7 +236,7 @@ WSHIoctl_GetInterfaceList(
INT res = -1;
/* Init Interface-ID-List */
IntfIDList = HeapAlloc(hHeap,0,sizeof(IntfIDList));
IntfIDList = HeapAlloc(hHeap, 0, sizeof(*IntfIDList));
list_init(&IntfIDList->entry);
/* open tcp-driver */