do not purge interfaces on template load

This commit is contained in:
Martin Willi 2009-04-07 12:59:54 +00:00
parent 15e247922d
commit 5ec7ff5675

View File

@ -300,7 +300,6 @@ static bool load_template(private_guest_t *this, char *path)
{
char dir[PATH_MAX];
size_t len;
iface_t *iface;
if (path == NULL)
{
@ -324,10 +323,6 @@ static bool load_template(private_guest_t *this, char *path)
{
return FALSE;
}
while (this->ifaces->remove_last(this->ifaces, (void**)&iface) == SUCCESS)
{
iface->destroy(iface);
}
return TRUE;
}