- Old VirtualBox OSE 5.2.44 preserved as "-legacy" versions of the ports (repocopied) - Add back extra patch removed in r528258, actually required to build DEBUG kmod - Correctly define WITH_DEBUG when enabling the DEBUG option, so binaries are not stripped Please note that this new version supports only amd64 CPUs. If you need to use older hardware please install the legacy ports. Note that moving VM snapshots across major updates is unsupported, it's strongly suggested to properly shutdown VMs before upgrading, please check UPDATING for further details. This update is the result of work from many people, and thanks to all who gave feedback and tested things. Patch based on work from: Mario Lobo <lobo@bsd.com.br> and jkim. PR: 234878 Submitted by: kunda <chitty_cloud@me.com> Approved by: vbox (implicit) Reviewed by: decke Tested by: jwb, martin ilavsky <ilavsky.martin@gmail.com>, Mario Lobo <lobo@bsd.com.br> Relnotes: https://www.virtualbox.org/wiki/Changelog-6.1 Differential Revision: https://reviews.freebsd.org/D28871
11 lines
502 B
C++
11 lines
502 B
C++
--- src/VBox/Main/src-server/VirtualBoxImpl.cpp.orig 2020-05-13 19:44:10 UTC
|
|
+++ src/VBox/Main/src-server/VirtualBoxImpl.cpp
|
|
@@ -2251,7 +2251,7 @@ int VirtualBox::i_encryptSettingBytes(const uint8_t *a
|
|
if (aCiphertextSize < 32)
|
|
return VERR_INVALID_PARAMETER;
|
|
|
|
- AssertCompile(sizeof(m->SettingsCipherKey) >= 32);
|
|
+ // AssertCompile(sizeof(m->SettingsCipherKey) >= 32);
|
|
|
|
/* store the first 8 bytes of the cipherkey for verification */
|
|
for (i = 0, j = 0; i < 8; i++, j++)
|