forked from pool/virtualbox
2c52cfe01d
- VirtualBox 7.0.4 (released November 18 2022) VirtualBox 7.0.2 (released October 20 2022) VirtualBox 7.0.0 (released October 10 2022) OBS-URL: https://build.opensuse.org/request/show/1037192 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=664
22 lines
882 B
Diff
22 lines
882 B
Diff
Index: VirtualBox-7.0.4/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
|
===================================================================
|
|
--- VirtualBox-7.0.4.orig/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
|
+++ VirtualBox-7.0.4/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
|
@@ -45,7 +45,7 @@
|
|
#include <iprt/assert.h>
|
|
#include <iprt/errcore.h>
|
|
#include "r0drv/alloc-r0drv.h"
|
|
-
|
|
+#include <linux/kmemleak.h>
|
|
|
|
#if (defined(RT_ARCH_AMD64) || defined(DOXYGEN_RUNNING)) && !defined(RTMEMALLOC_EXEC_HEAP)
|
|
# if RTLNX_VER_MIN(2,6,23) && RTLNX_VER_MAX(5,8,0) && !RTLNX_RHEL_MAJ_PREREQ(8,5)
|
|
@@ -311,6 +311,7 @@ DECLHIDDEN(int) rtR0MemAllocEx(size_t cb
|
|
fFlags &= ~RTMEMHDR_FLAG_KMALLOC;
|
|
pHdr = vmalloc(cb + sizeof(*pHdr));
|
|
}
|
|
+ kmemleak_not_leak(pHdr);
|
|
}
|
|
else
|
|
pHdr = vmalloc(cb + sizeof(*pHdr));
|