summaryrefslogtreecommitdiff
path: root/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2020-07-29 10:07:17 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2020-07-29 10:07:17 +0000
commit7cdf0c7454216b0e8fc2d2c67c7c33b60653f344 (patch)
tree8e3238ea53570b30dc183efcd33a9e277ff89ad4 /src/VBox/HostDrivers/Support/SUPLibLdr.cpp
parent6a8212aa7685192a2ae8282336574288a957e70f (diff)
downloadVirtualBox-svn-7cdf0c7454216b0e8fc2d2c67c7c33b60653f344.tar.gz
SUP: Added a PRTERRINFO parameter to SUPR3LoadVMM. bugref:9801
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@85506 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/HostDrivers/Support/SUPLibLdr.cpp')
-rw-r--r--src/VBox/HostDrivers/Support/SUPLibLdr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/HostDrivers/Support/SUPLibLdr.cpp b/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
index e3aedd543f5..b161e51508a 100644
--- a/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
+++ b/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
@@ -682,10 +682,10 @@ SUPR3DECL(int) SUPR3GetSymbolR0(void *pvImageBase, const char *pszSymbol, void *
}
-SUPR3DECL(int) SUPR3LoadVMM(const char *pszFilename)
+SUPR3DECL(int) SUPR3LoadVMM(const char *pszFilename, PRTERRINFO pErrInfo)
{
void *pvImageBase;
- return SUPR3LoadModule(pszFilename, "VMMR0.r0", &pvImageBase, NULL /*pErrInfo*/);
+ return SUPR3LoadModule(pszFilename, "VMMR0.r0", &pvImageBase, pErrInfo);
}