From c8a6990932d5cfe9c18df48cfcd818fd85b88e29 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Tue, 9 Jun 2015 03:05:53 +0200 Subject: [PATCH] lxc: fix build on mpc85xx Initialize ret to 0 so compiler no longer complains about monitor.c: In function 'lxc_monitor_open': monitor.c:212:5: error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized] Signed-off-by: Daniel Golle --- .../patches/016-uninitialized-ret-in-monitor.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 utils/lxc/patches/016-uninitialized-ret-in-monitor.patch diff --git a/utils/lxc/patches/016-uninitialized-ret-in-monitor.patch b/utils/lxc/patches/016-uninitialized-ret-in-monitor.patch new file mode 100644 index 0000000000..7eca2eaeb0 --- /dev/null +++ b/utils/lxc/patches/016-uninitialized-ret-in-monitor.patch @@ -0,0 +1,11 @@ +--- a/src/lxc/monitor.c ++++ b/src/lxc/monitor.c +@@ -181,7 +181,7 @@ int lxc_monitor_sock_name(const char *lx + int lxc_monitor_open(const char *lxcpath) + { + struct sockaddr_un addr; +- int fd,ret; ++ int fd,ret = 0; + int retry,backoff_ms[] = {10, 50, 100}; + size_t len; +