Changeset 3531 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Jul 10, 2007 2:50:40 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22755
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r3529 r3531 1220 1220 if (VBOX_SUCCESS(rc)) 1221 1221 { 1222 rc= RTLdrGetSymbolEx(hLdrMod, &pIn->achImage[0], (uintptr_t)OpenOut.pvImageBase, "ModuleInit", &ModuleInit);1223 if (VBOX_FAILURE(rc ))1222 int rc2 = RTLdrGetSymbolEx(hLdrMod, &pIn->achImage[0], (uintptr_t)OpenOut.pvImageBase, "ModuleInit", &ModuleInit); 1223 if (VBOX_FAILURE(rc2)) 1224 1224 ModuleInit = 0; 1225 1225 1226 rc = RTLdrGetSymbolEx(hLdrMod, &pIn->achImage[0], (uintptr_t)OpenOut.pvImageBase, "ModuleTerm", &ModuleTerm);1227 if (VBOX_FAILURE(rc ))1226 rc2 = RTLdrGetSymbolEx(hLdrMod, &pIn->achImage[0], (uintptr_t)OpenOut.pvImageBase, "ModuleTerm", &ModuleTerm); 1227 if (VBOX_FAILURE(rc2)) 1228 1228 ModuleTerm = 0; 1229 1229 }
Note:
See TracChangeset
for help on using the changeset viewer.