﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
10845,VBoxSVC crash caused by incorrect use of IAppliance => fixed in SVN,Ivo Smits,,"When I call IVirtualBox::createAppliance(), IAppliance::read() and then IAppliance::importMachines() - without calling IAppliance::interpret() - VBoxSVC crashes.

I've already found out that I have to call IAppliance::interpret(), but nevertheless this looks like a bug.

Simplified version of the code I used (C#):
IAppliance app = VirtualBox.CreateAppliance();
IProgress progress = app.Read(""c:\file.ova"");
progress.WaitForCompletion(-1);
//app.Interpret();
app.ImportMachines(new ImportOptions[] { ImportOptions.ImportOptions_KeepNATMACs });
",defect,closed,OVF,VirtualBox 4.1.18,fixed,VBoxSVC crash IAppliance,,all,Windows
