Changeset 96415 in vbox
- Timestamp:
- Aug 22, 2022 8:28:16 PM (2 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/nocrt-fatal-write-win.cpp
r96407 r96415 52 52 { 53 53 DWORD cbIgn; 54 WriteFile(GetStdHandle(STD_ERROR_HANDLE 54 WriteFile(GetStdHandle(STD_ERROR_HANDLE), pchMsg, (DWORD)cchMsg, &cbIgn, NULL); 55 55 } 56 56 -
trunk/src/VBox/Runtime/win/RTErrConvertFromWin32.cpp
r96407 r96415 457 457 458 458 /* unknown error. */ 459 #ifndef IN_SUP_HARDENED_R3 459 #if !defined(IN_SUP_HARDENED_R3) \ 460 && !defined(IPRT_NO_CRT) /* Please, don't drag log.cpp into the no-CRT images! */ 460 461 AssertLogRelMsgFailed(("Unhandled error %u\n", uNativeCode)); 461 462 #else
Note:
See TracChangeset
for help on using the changeset viewer.