Opened 8 years ago
Closed 8 years ago
#16779 closed defect (fixed)
VBoxManage > controlvm > videocapfile doesn't work due to typo in code.
Reported by: | varunramesh | Owned by: | |
---|---|---|---|
Component: | other | Version: | VirtualBox 5.1.22 |
Keywords: | VBoxManage videocapfile | Cc: | |
Guest type: | all | Host type: | all |
Description
VBoxManage controlvm <VM_NAME> videocapfile <FILENAME> doesn't work, printing out
VBoxManage.exe: error: Video capture file name '' is not absolute
This seems to be due to a typo in a single line (L1796) in VBoxManageControlVM.cpp
a->argv[3] should probably read a->argv[2], as the capture filename is supposed to be the second argument.
Change History (3)
comment:1 by , 8 years ago
comment:2 by , 8 years ago
Fixed. Fix will be available with the next 5.1.x maintenance release. Thanks!
Note:
See TracTickets
for help on using tickets.
Meant to say that the capture filename should be in the third argument slot, thus the index should be argv[2].