- Timestamp:
- Jan 31, 2022 8:48:00 PM (3 years ago)
- Location:
- trunk/src/VBox/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VDInternal.h
r93115 r93512 32 32 #include <iprt/memcache.h> 33 33 34 #if 0 /* bird: this is nonsense */ 34 35 /** Disable dynamic backends on non x86 architectures. This feature 35 36 * requires the SUPR3 library which is not available there. … … 37 38 #if !defined(VBOX_HDD_NO_DYNAMIC_BACKENDS) && !defined(RT_ARCH_X86) && !defined(RT_ARCH_AMD64) 38 39 # define VBOX_HDD_NO_DYNAMIC_BACKENDS 40 #endif 39 41 #endif 40 42 -
trunk/src/VBox/Storage/VDPlugin.cpp
r93115 r93512 38 38 * Structures and Typedefs * 39 39 *********************************************************************************************************************************/ 40 41 40 /** 42 41 * Plugin structure. … … 56 55 57 56 /********************************************************************************************************************************* 58 * Defined Constants And Macros *59 *********************************************************************************************************************************/60 61 62 /*********************************************************************************************************************************63 57 * Global Variables * 64 58 *********************************************************************************************************************************/ 65 66 59 #ifndef VBOX_HDD_NO_DYNAMIC_BACKENDS 67 60 /** Head of loaded plugin list. */ … … 618 611 /* Plugin loaded? Nothing to do. */ 619 612 if (vdPluginFind(pszFilename)) 613 { 614 LogFlowFunc(("Plugin '%s' already loaded\n", pszFilename)); 620 615 return VINF_SUCCESS; 616 } 621 617 622 618 RTLDRMOD hPlugin = NIL_RTLDRMOD; 623 619 int rc = SUPR3HardenedLdrLoadPlugIn(pszFilename, &hPlugin, NULL); 620 LogFlowFunc(("SUPR3HardenedLdrLoadPlugIn('%s') -> %Rrc\n", pszFilename, rc)); 624 621 if (RT_SUCCESS(rc)) 625 622 {
Note:
See TracChangeset
for help on using the changeset viewer.