From: Evgeny Vereshchagin Date: Thu, 28 Apr 2016 17:48:17 +0000 (+0300) Subject: nspawn: initialize the veth_name (#3141) X-Git-Tag: v230~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5aa3eba50c52722e57cf444432ef80acf3298a85;p=thirdparty%2Fsystemd.git nspawn: initialize the veth_name (#3141) Fixes: $ systemd-nspawn -h ... Failed to remove veth interface ����: Operation not permitted This is a follow-up for d2773e59de3dd970d861 --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 5d39c9d7c30..8c90aa8015b 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -3339,7 +3339,7 @@ int main(int argc, char *argv[]) { _cleanup_close_ int master = -1, image_fd = -1; _cleanup_fdset_free_ FDSet *fds = NULL; int r, n_fd_passed, loop_nr = -1; - char veth_name[IFNAMSIZ]; + char veth_name[IFNAMSIZ] = ""; bool secondary = false, remove_subvol = false; sigset_t mask_chld; pid_t pid = 0;