From 5ec7ff5675056cfe65ddcf6785738ebfe3de3241 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 7 Apr 2009 12:59:54 +0000 Subject: [PATCH] do not purge interfaces on template load --- src/dumm/guest.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/dumm/guest.c b/src/dumm/guest.c index 014a9113f..54bc453e7 100644 --- a/src/dumm/guest.c +++ b/src/dumm/guest.c @@ -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; }