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; }