Changeset 47231 in vbox
- Timestamp:
- Jul 18, 2013 11:57:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxMMR.cpp
r46593 r47231 46 46 } 47 47 48 int VBoxMMRInit( 49 const VBOXSERVICEENV *pEnv, 50 void **ppInstance, 51 bool *pfStartThread) 48 int VBoxMMRInit(const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread) 52 49 { 53 50 LogRel2(("VBoxMMR: Initializing\n")); … … 76 73 rc = VERR_NOT_FOUND; 77 74 } 75 76 RTLdrClose(gCtx.hModHook); 77 gCtx.hModHook = NIL_RTLDRMOD; 78 78 } 79 79 else 80 80 LogRel2(("VBoxMMR: Hooking library not found (%Rrc)\n", rc)); 81 81 82 RTLdrClose(gCtx.hModHook);83 gCtx.hModHook = NIL_RTLDRMOD;84 82 return rc; 85 83 }
Note:
See TracChangeset
for help on using the changeset viewer.