SDK Python typo in line 455 of vboxapi.py

Discussion about using the VirtualBox API, Tutorials, Samples.
Post Reply
AU
Posts: 1
Joined: 29. Jan 2020, 11:01

SDK Python typo in line 455 of vboxapi.py

Post by AU »

Line 455 of vboxapi.py should have oXcpt, currently oXctp, causing the api to crash in python

I cant figure out how to use the svn repository but the following is alink to a mirror

Code: Select all

print("Warning: CoInitializeSecurity failed: ", oXctp);
should read

Code: Select all

print("Warning: CoInitializeSecurity failed: ", oXcpt);
paulson
Oracle Corporation
Posts: 28
Joined: 6. Jun 2019, 20:16

Re: SDK Python typo in line 455 of vboxapi.py

Post by paulson »

AU wrote:Line 455 of vboxapi.py should have oXcpt, currently oXctp, causing the api to crash in python

I cant figure out how to use the svn repository but the following is alink to a mirror

Code: Select all

print("Warning: CoInitializeSecurity failed: ", oXctp);
should read

Code: Select all

print("Warning: CoInitializeSecurity failed: ", oXcpt);
Many thanks for the bug report AU. This has been fixed now in
VirtualBox branches 5.2, 6.0, and 6.1 so will thus be part of the next
maintenance release of these versions and in any future test builds
as well.
Post Reply