- Timestamp:
- Nov 19, 2008 12:27:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r14271 r14348 1021 1021 * tell the filter driver to init VBoxNetFlt functionality */ 1022 1022 rc = drvIntNetWinConstruct(pDrvIns, pCfgHandle); 1023 Assert(RT_SUCCESS(rc)); 1023 1024 if (RT_FAILURE(rc)) 1024 1025 { 1026 LogRel(("drvIntNetConstruct: drvIntNetWinConstruct failed, rc (0x%x)", rc)); 1025 1027 return rc; 1026 1028 } … … 1031 1033 1032 1034 rc = drvIntNetWinIfGuidToBindName(OpenReq.szTrunk, szBindName, cBindName); 1035 Assert(RT_SUCCESS(rc)); 1033 1036 if (RT_FAILURE(rc)) 1034 1037 { 1035 Assert(0);1038 LogRel(("drvIntNetConstruct: drvIntNetWinIfGuidToBindName failed, rc (0x%x)", rc)); 1036 1039 return rc; 1037 1040 }
Note:
See TracChangeset
for help on using the changeset viewer.