Changeset 63463 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Aug 15, 2016 9:39:22 AM (8 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r62490 r63463 120 120 "$(VBOX_PATH_SUPR3_CERTIFICATES)/$(lastword $(subst =,$(SP) ,$(cert)))" \ 121 121 "$@") 122 $(SED) -e "/const unsigned g_cb/d" --output "[email protected]" "$@" 123 $(MV) -f -- "[email protected]" "$@" 122 124 # The build certificate. 123 125 if "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING) && defined(VBOX_SIGNING_MODE) -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r63402 r63463 1401 1401 } 1402 1402 #else 1403 RT_NOREF(g_hStartupLog );1403 RT_NOREF(g_hStartupLog, g_cbStartupLog); 1404 1404 //g_hStartupLog = open() 1405 1405 #endif … … 1868 1868 static void supR3GrabOptions(void) 1869 1869 { 1870 const char *pszOpt;1871 1872 1870 # ifdef RT_OS_LINUX 1873 1871 g_uCaps = 0; … … 1885 1883 * Can be disabled with 'export VBOX_HARD_CAP_NET_RAW=0'. 1886 1884 */ 1887 pszOpt = getenv("VBOX_HARD_CAP_NET_RAW");1885 const char *pszOpt = getenv("VBOX_HARD_CAP_NET_RAW"); 1888 1886 if ( !pszOpt 1889 1887 || memcmp(pszOpt, "0", sizeof("0")) != 0) -
trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp
r62490 r63463 187 187 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted, SUPINITOP *penmWhat, PRTERRINFO pErrInfo) 188 188 { 189 RT_NOREF(penmWhat, pErrInfo); 190 189 191 /* 190 192 * Nothing to do if pre-inited. … … 264 266 int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq) 265 267 { 268 RT_NOREF(cbReq); 266 269 if (RT_LIKELY(ioctl(pThis->hDevice, uFunction, pvReq) >= 0)) 267 270 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.