From: Christian Brauner Date: Tue, 5 Mar 2019 18:27:32 +0000 (+0100) Subject: Merge pull request #2895 from tomponline/tp-2019-03-05/minor-fix X-Git-Tag: lxc-3.2.0~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5bd9e1172f77d1bfb679b34d4f889de224148f0;p=thirdparty%2Flxc.git Merge pull request #2895 from tomponline/tp-2019-03-05/minor-fix conf: Fixes uninitialised variable. > @brauner clang is failing but gcc passes, would it be OK to initialise this to 0? He, unfortunately not. :) What would happen now is that you'd close `stdin` on a standard system. What you'd want is `= -EBADF`. :) --- b5bd9e1172f77d1bfb679b34d4f889de224148f0