From: Tycho Andersen Date: Mon, 13 Apr 2015 18:07:03 +0000 (+0000) Subject: fix dead code X-Git-Tag: lxc-2.0.0.beta1~313 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e438ef7c9a4cf256038d1f93c671ded60d09571e;p=thirdparty%2Flxc.git fix dead code We've already checked that c is not null above, so the false branch can never be taken here. Reported-by: Coverity Signed-off-by: Tycho Andersen Acked-by: Serge E. Hallyn --- diff --git a/src/lxc/lxccontainer.c b/src/lxc/lxccontainer.c index 0218e57bc..5b96b8c50 100644 --- a/src/lxc/lxccontainer.c +++ b/src/lxc/lxccontainer.c @@ -1531,7 +1531,7 @@ static bool lxcapi_createl(struct lxc_container *c, const char *t, return false; struct lxc_conf *old = current_config; - current_config = c ? c->lxc_conf : NULL; + current_config = c->lxc_conf; /* * since we're going to wait for create to finish, I don't think we