Changeset 22180 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 11, 2009 4:36:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/NetIf-linux.cpp
r21878 r22180 74 74 static int getInterfaceInfo(int iSocket, const char *pszName, PNETIFINFO pInfo) 75 75 { 76 memset(pInfo, 0, sizeof(*pInfo)); 76 // Zeroing out pInfo is a bad idea as it should contain both short and long names at this point. 77 //memset(pInfo, 0, sizeof(*pInfo)); 77 78 struct ifreq Req; 78 79 memset(&Req, 0, sizeof(Req));
Note:
See TracChangeset
for help on using the changeset viewer.